justfile: Update justfile to run tests by default

This commit is contained in:
John 2023-03-29 23:46:20 -05:00
parent b9c35c0e68
commit 6453a9f267

View File

@ -1,10 +1,14 @@
# Some common commands for working on this stuff # Some common commands for working on this stuff
cover:
cargo llvm-cov --open --doctests
test: test:
cargo test --doc && cargo nextest run cargo test --doc && cargo nextest run
chirp:
cargo run --bin chirp -- tests/chip8-test-suite/bin/chip8-test-suite.ch8
cover:
cargo llvm-cov --open --doctests
tokei: tokei:
tokei --exclude tests/chip8-test-suite tokei --exclude tests/chip8-test-suite