Skip to content

Commit 1ace364

Browse files
committed
chore(justfile): add more levels of test verbosity
1 parent 1575ce7 commit 1ace364

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

justfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,16 @@ docker-reboot: docker-stop docker-run
3939
run:
4040
cargo run
4141

42-
## Run the tests
42+
## Run the tests quietly
4343
test testset="":
44+
cargo test {{testset}}
45+
46+
## Run the tests showing stacktraces
47+
testv testset="":
4448
RUST_BACKTRACE=1 cargo test {{testset}}
4549

4650
## Run the tests with verbose and colored output
47-
testv testset="":
51+
testvv testset="":
4852
RUST_LOG="sqlx=error,info" \
4953
TEST_LOG=true \
5054
RUST_BACKTRACE=1 \

0 commit comments

Comments
 (0)