Browse Source

Set up storing of test results

master
Thom Wiggers 5 years ago
parent
commit
2be9d6b775
No known key found for this signature in database GPG Key ID: 1BB0A7CE26E363
1 changed files with 10 additions and 4 deletions
  1. +10
    -4
      .circleci/config.yml

+ 10
- 4
.circleci/config.yml View File

@@ -21,7 +21,10 @@ version: 2
uname -a &&
export CC=${CC} &&
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
docker:
@@ -35,9 +38,12 @@ version: 2
command: |
export CC=${CC}
export PQCLEAN_ONLY_DIFF=1
pip3 install -r requirements.txt &&
cd test && python3 -m nose --rednose --verbose

pip3 install -r requirements.txt
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:
arm64-gcc:


Loading…
Cancel
Save