diff --git a/Justfile b/Justfile index d090239..9ee01f6 100644 --- a/Justfile +++ b/Justfile @@ -12,9 +12,14 @@ release: install: cargo install --path . -test: +test: test-unit test-integration + +test-unit: cargo test --lib --bins +test-integration: + cargo test --test "*" + update-dependencies: @cd ./depcheck \ && python3 -m venv ./venv \