From e43d4bf3cdd5119ac7d97d16673e675b6cc2fdcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sun, 28 Nov 2021 16:14:54 +0100 Subject: [PATCH] Split unit and integ tests in Justfile --- Justfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 \