Format justfile using just --fmt

This commit is contained in:
Yuri Astrakhan 2023-05-23 23:47:55 -04:00
parent 843c21050d
commit 0209b662bf

View File

@ -1,9 +1,11 @@
#!/usr/bin/env just --justfile #!/usr/bin/env just --justfile
set shell := ["bash", "-c"] set shell := ["bash", "-c"]
export PGPORT := "5411" export PGPORT := "5411"
export DATABASE_URL := "postgres://postgres:postgres@localhost:" + PGPORT + "/db" export DATABASE_URL := "postgres://postgres:postgres@localhost:" + PGPORT + "/db"
export CARGO_TERM_COLOR := "always" export CARGO_TERM_COLOR := "always"
# export RUST_LOG := "debug" # export RUST_LOG := "debug"
# export RUST_BACKTRACE := "1" # export RUST_BACKTRACE := "1"
@ -58,7 +60,6 @@ stop:
bench: start bench: start
cargo bench cargo bench
# Run all tests using a test database # Run all tests using a test database
test: (docker-up "db") test-unit test-int test: (docker-up "db") test-unit test-int