From d51f97a9e4be372e8605734a2e02724df269277e Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 22 Feb 2022 14:34:58 +0100 Subject: [PATCH] gci: Do not generate JSON reports for test runs We've not been using them, so let's not generate them. --- .github/scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build.sh b/.github/scripts/build.sh index f74f2f646..076ab18a7 100755 --- a/.github/scripts/build.sh +++ b/.github/scripts/build.sh @@ -52,7 +52,7 @@ cat config.vars cat << EOF > pytest.ini [pytest] -addopts=-p no:logging --color=yes --timeout=1800 --timeout-method=thread --test-group-random-seed=42 --force-flaky --no-success-flaky-report --max-runs=3 --junitxml=report.xml --json-report --json-report-file=report.json --json-report-indent=2 +addopts=-p no:logging --color=yes --timeout=1800 --timeout-method=thread --test-group-random-seed=42 --force-flaky --no-success-flaky-report --max-runs=3 markers = slow_test: marks tests as slow (deselect with '-m "not slow_test"') EOF