diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-03-29 18:25:28 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-29 18:25:28 -0600 |
commit | b30b8e24beacd6263f5978eb96733d57af536e89 (patch) | |
tree | c45776d0e7b2ad733fc4cc913a7bc64c6a228275 | |
parent | 0adb9bed66599f103315ff3758bc5294ed5deb0a (diff) | |
parent | e74cbc38bd8511075eaf7af3a7cc6127684a99b0 (diff) | |
download | numpy-b30b8e24beacd6263f5978eb96733d57af536e89.tar.gz |
Merge pull request #13217 from tylerjereddy/azure_tests_always_pub
TST: always publish Azure tests
-rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 722823b7f..d240e587f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,9 +28,11 @@ jobs: F77=gfortran-5 F90=gfortran-5 \ CFLAGS='-UNDEBUG -std=c99' python3 runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml" displayName: 'Run 32-bit Ubuntu Docker Build / Tests' + continueOnError: true - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' + failTaskOnFailedTests: false testRunTitle: 'Publish test results for Python 3.6-32 bit full Linux' - job: macOS pool: @@ -99,9 +101,11 @@ jobs: displayName: 'Run Refuide Check' - script: python runtests.py --mode=full -- -rsx --junitxml=junit/test-results.xml displayName: 'Run Full NumPy Test Suite' + continueOnError: true - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' + failTaskOnFailedTests: false testRunTitle: 'Publish test results for Python 3.6 64-bit full Mac OS' - job: Windows pool: @@ -200,7 +204,9 @@ jobs: displayName: 'For gh-12667; Windows DLL resolution' - script: python runtests.py -n --show-build-log --mode=$(TEST_MODE) -- -rsx --junitxml=junit/test-results.xml displayName: 'Run NumPy Test Suite' + continueOnError: true - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' + failTaskOnFailedTests: false testRunTitle: 'Publish test results for Python $(PYTHON_VERSION) $(BITS)-bit $(TEST_MODE) Windows' |