ci: store test results
authorDennis Collaris <redacted>
Mon, 17 Jun 2019 21:12:09 +0000 (23:12 +0200)
committerDennis Collaris <redacted>
Mon, 17 Jun 2019 21:15:40 +0000 (23:15 +0200)
.circleci/config.yml
Makefile

index 2ca09892f4c7e333973699e5205e3f68e0ce8666..503aad7ea20d8f117fbaabe8755fe4b147b09f22 100644 (file)
@@ -37,3 +37,6 @@ jobs:
           pip3 install pytest-asyncio
           znc-buildmod palaver.cpp
           make test-integration
+
+      - store_test_results:
+          path: test-reports
index bce5e071c0b14a5909dbe67efb836b977ed4692a..8c93ee8782b3a134e3bfbdb861b0375ddc282f0e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -29,4 +29,5 @@ test/fixtures/modules/palaver.so: palaver.so
 
 .PHONY: test-integration
 test-integration: test/fixtures/modules/palaver.so
-       pytest
+       @mkdir test-reports
+       pytest --junitxml=test-reports/junit.xml
git clone https://git.99rst.org/PROJECT