Ignore large tests when doing "make test"

This commit is contained in:
deeplow 2023-08-08 12:29:51 +01:00
parent d6bce4dec5
commit e2accc2da1
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -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