Set up storing of test results
This commit is contained in:
parent
15bd2d4fb4
commit
2be9d6b775
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user