Split unit and integ tests in Justfile

This commit is contained in:
2021-11-28 16:14:54 +01:00
parent 48f3bc0199
commit e43d4bf3cd

View File

@@ -12,9 +12,14 @@ release:
install: install:
cargo install --path . cargo install --path .
test: test: test-unit test-integration
test-unit:
cargo test --lib --bins cargo test --lib --bins
test-integration:
cargo test --test "*"
update-dependencies: update-dependencies:
@cd ./depcheck \ @cd ./depcheck \
&& python3 -m venv ./venv \ && python3 -m venv ./venv \