We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16c6272 commit 8a5d43fCopy full SHA for 8a5d43f
2 files changed
.justfile
@@ -5,8 +5,22 @@ _help:
5
6
# Run all tests using nextest.
7
test:
8
+ #!/usr/bin/env bash
9
+ if ! psql -lqtA | grep -q "^backfill_test|" ; then
10
+ createdb backfill_test
11
+ fi
12
+ export DATABASE_URL="postgresql://localhost:5432/backfill_test"
13
cargo nextest run -F axum
14
15
+# Run the named tests using nextest.
16
+test-one ARG:
17
18
19
20
21
22
+ cargo nextest run -F axum {{ARG}}
23
+
24
# get a testing coverage report
25
coverage:
26
cargo llvm-cov --all-targets --workspace --summary-only
0 commit comments