Large test run: hide traceback to avoid spam

Some tests are expected to fail. To avoid having potentially thousands
of tracebacks of the failed docs at the end, we're deactivating that
reporting.
This commit is contained in:
deeplow 2023-08-07 12:42:15 +01:00
parent fa215063ee
commit a0bcd12635
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -63,7 +63,7 @@ test-large-init: test-large-requirements
TEST_LARGE_RESULTS:=$(LARGE_TEST_REPO_DIR)/results/junit/commit_$(GIT_DESC).junit.xml TEST_LARGE_RESULTS:=$(LARGE_TEST_REPO_DIR)/results/junit/commit_$(GIT_DESC).junit.xml
.PHONY: tests-large .PHONY: tests-large
test-large: test-large-init ## Run large test set test-large: test-large-init ## Run large test set
python -m pytest tests/test_large_set.py::TestLargeSet -v $(JUNIT_FLAGS) --junitxml=$(TEST_LARGE_RESULTS) python -m pytest --tb=no tests/test_large_set.py::TestLargeSet -v $(JUNIT_FLAGS) --junitxml=$(TEST_LARGE_RESULTS)
python $(TEST_LARGE_RESULTS)/report.py $(TEST_LARGE_RESULTS) python $(TEST_LARGE_RESULTS)/report.py $(TEST_LARGE_RESULTS)
# Makefile self-help borrowed from the securedrop-client project # Makefile self-help borrowed from the securedrop-client project