summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-12-22 11:34:51 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-12-22 11:34:51 -0500
commit7e747a3e2d50138474a0ac5ecc766c9399a27e2b (patch)
tree26f93f0f92418c04d06a484f15d0de4c833591d7
parent0d6a8784cdafd46409fe187ad87b7c38772d6d1b (diff)
downloadpython-coveragepy-git-7e747a3e2d50138474a0ac5ecc766c9399a27e2b.tar.gz
Re-order windows CI jobs to get more useful information earlier
-rw-r--r--appveyor.yml76
1 files changed, 38 insertions, 38 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 96fc920e..a8b4d56e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -19,34 +19,58 @@ environment:
# descriptions, but can be wrong in the minor version, since we use the
# version pre-installed on AppVeyor.
#
- # 32-bit jobs don't run the tests under the Python tracer, since that should
- # be exactly the same as 64-bit.
matrix:
- - JOB: "2.7 32-bit"
- TOXENV: "py27"
- PYTHON: "C:\\Python27"
- PYTHON_VERSION: "2.7.17"
- PYTHON_ARCH: "32"
- COVERAGE_NO_PYTRACER: "1"
-
- JOB: "2.7 64-bit"
TOXENV: "py27"
PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.17"
PYTHON_ARCH: "64"
- - JOB: "3.5 32-bit"
+ - JOB: "3.5 64-bit"
TOXENV: "py35"
- PYTHON: "C:\\Python35"
+ PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.9"
+ PYTHON_ARCH: "64"
+
+ - JOB: "3.6 64-bit"
+ TOXENV: "py36"
+ PYTHON: "C:\\Python36-x64"
+ PYTHON_VERSION: "3.6.9"
+ PYTHON_ARCH: "64"
+
+ - JOB: "3.7 64-bit"
+ TOXENV: "py37"
+ PYTHON: "C:\\Python37-x64"
+ PYTHON_VERSION: "3.7.5"
+ PYTHON_ARCH: "64"
+
+ - JOB: "3.8 64-bit"
+ TOXENV: "py38"
+ PYTHON: "C:\\Python38-x64"
+ PYTHON_VERSION: "3.8.0"
+ PYTHON_ARCH: "64"
+
+ - JOB: "3.9 64-bit"
+ TOXENV: "py39"
+ PYTHON: "C:\\Python39-x64"
+ PYTHON_VERSION: "3.9.0a2"
+ PYTHON_ARCH: "64"
+
+ # 32-bit jobs don't run the tests under the Python tracer, since that should
+ # be exactly the same as 64-bit.
+ - JOB: "2.7 32-bit"
+ TOXENV: "py27"
+ PYTHON: "C:\\Python27"
+ PYTHON_VERSION: "2.7.17"
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"
- - JOB: "3.5 64-bit"
+ - JOB: "3.5 32-bit"
TOXENV: "py35"
- PYTHON: "C:\\Python35-x64"
+ PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.9"
- PYTHON_ARCH: "64"
+ PYTHON_ARCH: "32"
+ COVERAGE_NO_PYTRACER: "1"
- JOB: "3.6 32-bit"
TOXENV: "py36"
@@ -55,12 +79,6 @@ environment:
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"
- - JOB: "3.6 64-bit"
- TOXENV: "py36"
- PYTHON: "C:\\Python36-x64"
- PYTHON_VERSION: "3.6.9"
- PYTHON_ARCH: "64"
-
- JOB: "3.7 32-bit"
TOXENV: "py37"
PYTHON: "C:\\Python37"
@@ -68,12 +86,6 @@ environment:
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"
- - JOB: "3.7 64-bit"
- TOXENV: "py37"
- PYTHON: "C:\\Python37-x64"
- PYTHON_VERSION: "3.7.5"
- PYTHON_ARCH: "64"
-
- JOB: "3.8 32-bit"
TOXENV: "py38"
PYTHON: "C:\\Python38"
@@ -81,12 +93,6 @@ environment:
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"
- - JOB: "3.8 64-bit"
- TOXENV: "py38"
- PYTHON: "C:\\Python38-x64"
- PYTHON_VERSION: "3.8.0"
- PYTHON_ARCH: "64"
-
- JOB: "3.9 32-bit"
TOXENV: "py39"
PYTHON: "C:\\Python39"
@@ -94,12 +100,6 @@ environment:
PYTHON_ARCH: "32"
COVERAGE_NO_PYTRACER: "1"
- - JOB: "3.9 64-bit"
- TOXENV: "py39"
- PYTHON: "C:\\Python39-x64"
- PYTHON_VERSION: "3.9.0a2"
- PYTHON_ARCH: "64"
-
# Meta coverage
- JOB: "Meta 2.7"
TOXENV: "py27"