From e2accc2da1f20a957e7a477d9af39ded09db886e Mon Sep 17 00:00:00 2001 From: deeplow Date: Tue, 8 Aug 2023 12:29:51 +0100 Subject: [PATCH] Ignore large tests when doing "make test" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c290cd1..4828b17 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ test: # shared state. # See more in https://github.com/freedomofpress/dangerzone/issues/493 pytest --co -q tests/gui | grep -v ' collected' | xargs -n 1 pytest -v - pytest -v --cov --ignore dev_scripts --ignore tests/gui + pytest -v --cov --ignore dev_scripts --ignore tests/gui --ignore tests/test_large_set.py # Makefile self-help borrowed from the securedrop-client project