From 3ba918188803259afa46f99f8356b12b925b8f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Thu, 23 May 2024 17:44:27 +0200 Subject: [PATCH] tests: run all the tests with one command This is mainly to check if the CI makes it work properly, especially on Ubuntu Focal, as described in #493 --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 603216b..efadf4c 100644 --- a/Makefile +++ b/Makefile @@ -42,11 +42,7 @@ lint-apply: lint-black-apply lint-isort-apply ## apply all the linter's suggesti .PHONY: test test: - # Make each GUI test run as a separate process, to avoid segfaults due to - # 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 --ignore tests/test_large_set.py + pytest -v --cov --ignore dev_scripts --ignore tests/test_large_set.py .PHONY: test-large-requirements