diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-12-09 08:39:35 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-09 08:39:35 -0800 |
commit | 5d68bef1097ed5c1b8e83cb30851e50a5a0ecd29 (patch) | |
tree | d15549b2fa956f001bf0b38c264fd615915ad695 /azure-pipelines.yml | |
parent | 294867351296357a0bde5b16b2ec49fe86868d15 (diff) | |
parent | ac5695c12112543401dad6c6f71b5190feb2415e (diff) | |
download | numpy-5d68bef1097ed5c1b8e83cb30851e50a5a0ecd29.tar.gz |
Merge pull request #12502 from tylerjereddy/azure_py_version_fix
TST: Azure Python version fix
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 b70ff158c..a5af5ee35 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' @@ -181,4 +181,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' |