diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-25 19:48:58 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-11-25 22:20:47 -0500 |
commit | c280e8cafec1e80e841bd9061f3ab1b3f0ade1d1 (patch) | |
tree | 102633b3f15c24a41d205607a94ab7b2469665bb | |
parent | a28e873891003ad31762e1214d32f54ec423fd62 (diff) | |
download | python-coveragepy-git-c280e8cafec1e80e841bd9061f3ab1b3f0ade1d1.tar.gz |
Don't run pytracer tests on 32-bit Windows
-rw-r--r-- | appveyor.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 8404fd4c..e11f36b6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,12 +20,16 @@ environment: # $PYTHON directory doesn't exist. $PYTHON_VERSION is visible in the job # 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" @@ -38,6 +42,7 @@ environment: PYTHON: "C:\\Python35" PYTHON_VERSION: "3.5.9" PYTHON_ARCH: "32" + COVERAGE_NO_PYTRACER: "1" - JOB: "3.5 64-bit" TOXENV: "py35" @@ -50,6 +55,7 @@ environment: PYTHON: "C:\\Python36" PYTHON_VERSION: "3.6.9" PYTHON_ARCH: "32" + COVERAGE_NO_PYTRACER: "1" - JOB: "3.6 64-bit" TOXENV: "py36" @@ -62,6 +68,7 @@ environment: PYTHON: "C:\\Python37" PYTHON_VERSION: "3.7.5" PYTHON_ARCH: "32" + COVERAGE_NO_PYTRACER: "1" - JOB: "3.7 64-bit" TOXENV: "py37" @@ -74,6 +81,7 @@ environment: PYTHON: "C:\\Python38" PYTHON_VERSION: "3.8.0" PYTHON_ARCH: "32" + COVERAGE_NO_PYTRACER: "1" - JOB: "3.8 64-bit" TOXENV: "py38" @@ -86,6 +94,7 @@ environment: PYTHON: "C:\\Python39" PYTHON_VERSION: "3.9.0a1" PYTHON_ARCH: "32" + COVERAGE_NO_PYTRACER: "1" - JOB: "3.9 64-bit" TOXENV: "py39" |