diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-07 09:36:00 -0800 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2018-12-07 10:39:40 -0800 |
commit | ac5695c12112543401dad6c6f71b5190feb2415e (patch) | |
tree | a7d43cce311f443779b884a1857ad7f52b03f54b /azure-pipelines.yml | |
parent | 22d6157cc28d4fcffb5b171ab0bbaa869e49406b (diff) | |
download | numpy-ac5695c12112543401dad6c6f71b5190feb2415e.tar.gz |
TST: Azure Python version fix
* Azure test results are now published
with appropriate Python version
strings
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 812315bc2..f16f75a16 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -24,7 +24,7 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' - testRunTitle: 'Publish test results for Python 3.6-32 bit' + testRunTitle: 'Publish test results for Python 3.6-32 bit full Linux' - job: macOS pool: # NOTE: at time of writing, there is a danger @@ -81,7 +81,7 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' - testRunTitle: 'Publish test results for Python $(python.version)' + testRunTitle: 'Publish test results for Python 3.6 64-bit full Mac OS' - job: Windows pool: vmIMage: 'VS2017-Win2016' @@ -187,4 +187,4 @@ jobs: - task: PublishTestResults@2 inputs: testResultsFiles: '**/test-*.xml' - testRunTitle: 'Publish test results for Python $(python.version)' + testRunTitle: 'Publish test results for Python $(PYTHON_VERSION) $(BITS)-bit $(TEST_MODE) Windows' |