From 2a43c27a5cd1c50395670be1da87874c2fe4b404 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Thu, 18 Apr 2019 14:05:01 +0200 Subject: [PATCH] Fix xunit-file path --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 740b7fd8..854460b3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ version: 2 export CC=${CC} && pip3 install -r requirements.txt && mkdir test-results && - cd test && python3 -m nose --rednose --verbose --with-xunit --xunit-file=test-results/nosetests.xml" + cd test && python3 -m nose --rednose --verbose --with-xunit --xunit-file=../test-results/nosetests.xml" - store_test_results: path: test-results @@ -41,7 +41,7 @@ version: 2 pip3 install -r requirements.txt mkdir test-results cd test - python3 -m nose --rednose --verbose --with-xunit --xunit-file=test-results/nosetests.xml + python3 -m nose --rednose --verbose --with-xunit --xunit-file=../test-results/nosetests.xml - store_test_results: path: test-results