From 9f7195282f0120e7e70ae2377e49f1910c5c5599 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Mon, 13 Jun 2022 22:47:49 +0200 Subject: [PATCH] Enable output in rust unit tests --- Justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Justfile b/Justfile index e4c22c3..c9e2bf0 100644 --- a/Justfile +++ b/Justfile @@ -40,8 +40,8 @@ build-static: test: test-unit test-integration test-e2e -test-unit: - cargo test --lib --bins +test-unit +tests="": + cargo test --lib --bins -- --show-output {{tests}} test-integration: cargo test --test "*"