diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-11-15 10:05:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 10:05:59 -0700 |
commit | ae88e02a48c4744afd22c63be388870037f3c84c (patch) | |
tree | 667e4a6dc0611303665a766c588a48934fffeafd | |
parent | 1ebf711fcd293725f061bf49af8357640c0b8349 (diff) | |
parent | b59217a852a89033e1340b39c1789e9725b4ee22 (diff) | |
download | numpy-ae88e02a48c4744afd22c63be388870037f3c84c.tar.gz |
Merge pull request #14914 from charris/test-3.8-on-windows
WIP, TST: Test with Python3.8 on Windows.
-rw-r--r-- | azure-pipelines.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bfb033bb8..9e1e52952 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -151,6 +151,11 @@ stages: PYTHON_ARCH: 'x86' TEST_MODE: fast BITS: 32 + Python38-32bit-fast: + PYTHON_VERSION: '3.8' + PYTHON_ARCH: 'x86' + TEST_MODE: fast + BITS: 32 Python35-64bit-full: PYTHON_VERSION: '3.5' PYTHON_ARCH: 'x64' @@ -166,6 +171,11 @@ stages: PYTHON_ARCH: 'x64' TEST_MODE: full BITS: 64 + Python38-64bit-full: + PYTHON_VERSION: '3.8' + PYTHON_ARCH: 'x64' + TEST_MODE: full + BITS: 64 steps: - template: azure-steps-windows.yml - job: Linux_PyPy3 |