From 6453a9f26765e0577cbce627f55a5055cab784d1 Mon Sep 17 00:00:00 2001 From: John Breaux Date: Wed, 29 Mar 2023 23:46:20 -0500 Subject: [PATCH] justfile: Update justfile to run tests by default --- justfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index ed178b5..910a56c 100644 --- a/justfile +++ b/justfile @@ -1,10 +1,14 @@ # Some common commands for working on this stuff -cover: - cargo llvm-cov --open --doctests - test: 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 --exclude tests/chip8-test-suite +