gci: Do not generate JSON reports for test runs

We've not been using them, so let's not generate them.
This commit is contained in:
Christian Decker 2022-02-22 14:34:58 +01:00 committed by Rusty Russell
parent 49d2779078
commit d51f97a9e4

View file

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