diff options
author | Vladimír Čunát <vladimir.cunat@nic.cz> | 2021-04-15 16:44:39 +0200 |
---|---|---|
committer | Vladimír Čunát <vladimir.cunat@nic.cz> | 2021-04-30 16:24:40 +0200 |
commit | 17f34b3589a49b60acd7d804d0b993a82d09f999 (patch) | |
tree | ca4a80fc0b037fc36ab4f92026903faa560a48c2 /tests/pytests | |
parent | Merge branch 'cache-stale-readers' into 'master' (diff) | |
download | knot-resolver-17f34b3589a49b60acd7d804d0b993a82d09f999.tar.xz knot-resolver-17f34b3589a49b60acd7d804d0b993a82d09f999.zip |
ci: utilize test reports
https://docs.gitlab.com/ce/ci/unit_test_reports.html
https://mesonbuild.com/Unit-tests.html#testlogjunitxml
Implemented fully: build, build-asan; partially: pytests, deckard.
Diffstat (limited to 'tests/pytests')
-rw-r--r-- | tests/pytests/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/pytests/meson.build b/tests/pytests/meson.build index 217fc027..d717dc20 100644 --- a/tests/pytests/meson.build +++ b/tests/pytests/meson.build @@ -41,6 +41,7 @@ test( '-d', '--html', 'pytests.parallel.html', '--self-contained-html', + '--junitxml=pytests.parallel.junit.xml', '-n', '24', '-v', ], @@ -60,6 +61,7 @@ test( python3, args: [ '-m', 'pytest', + '--junitxml=pytests.single.junit.xml', '-ra', '--capture=no', 'conn_flood.py', |