Set up storing of test results

This commit is contained in:
Thom Wiggers 2019-04-18 11:16:47 +02:00
parent 15bd2d4fb4
commit 2be9d6b775
No known key found for this signature in database
GPG Key ID: 001BB0A7CE26E363

View File

@ -21,7 +21,10 @@ version: 2
uname -a && uname -a &&
export CC=${CC} && export CC=${CC} &&
pip3 install -r requirements.txt && pip3 install -r requirements.txt &&
cd test && python3 -m nose --rednose --verbose" mkdir test-results &&
cd test && python3 -m nose --rednose --verbose --with-xunit --xunit-file=test-results/nosetests.xml"
- store_test_results:
path: test-results
.native_job: &nativejob .native_job: &nativejob
docker: docker:
@ -35,9 +38,12 @@ version: 2
command: | command: |
export CC=${CC} export CC=${CC}
export PQCLEAN_ONLY_DIFF=1 export PQCLEAN_ONLY_DIFF=1
pip3 install -r requirements.txt && pip3 install -r requirements.txt
cd test && python3 -m nose --rednose --verbose mkdir test-results
cd test
python3 -m nose --rednose --verbose --with-xunit --xunit-file=test-results/nosetests.xml
- store_test_results:
path: test-results
jobs: jobs:
arm64-gcc: arm64-gcc: