From: Dennis Collaris Date: Mon, 17 Jun 2019 21:12:09 +0000 (+0200) Subject: ci: store test results X-Git-Tag: 1.2.0~9^2 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=a86e5e9449110bec673053cbd3c9282ae5f0fb85;p=znc-palaver.git ci: store test results --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ca0989..503aad7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -37,3 +37,6 @@ jobs: pip3 install pytest-asyncio znc-buildmod palaver.cpp make test-integration + + - store_test_results: + path: test-reports diff --git a/Makefile b/Makefile index bce5e07..8c93ee8 100644 --- 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