diff options
author | mattip <matti.picus@gmail.com> | 2018-12-19 09:25:12 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-04-16 20:45:56 +0300 |
commit | c09fadcc8220f4ac80f0dcc4d82d22f58ef2d6c1 (patch) | |
tree | ab56cb507b36fe8adad641fae8d3731362421b6e /azure-pipelines.yml | |
parent | 4c977804b4eaadf5ac1b4eb1024f8167657e976d (diff) | |
download | numpy-c09fadcc8220f4ac80f0dcc4d82d22f58ef2d6c1.tar.gz |
DEV: add pypy3 to azure CI
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4e8a8d654..3fe8704f0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -210,3 +210,14 @@ jobs: testResultsFiles: '**/test-*.xml' failTaskOnFailedTests: true testRunTitle: 'Publish test results for Python $(PYTHON_VERSION) $(BITS)-bit $(TEST_MODE) Windows' + +- job: Linux_PyPy3_latest_nightly + pool: + vmIMage: 'ubuntu-16.04' + steps: + - script: source tools/azure-pypy-test.sh + displayName: 'Run PyPy3.5 Build / Tests' + - task: PublishTestResults@2 + inputs: + testResultsFiles: '**/test-*.xml' + testRunTitle: 'Publish test results for PyPy3.5' |