diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 06:22:47 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 06:22:47 -0400 |
commit | 6323215c36e2852c1cf56bb5d0560854e9a83a9c (patch) | |
tree | c137d1f763036d1fdcca452afb707f3cc6bd8bed | |
parent | 27a7b8b2294bb9997f63cca073792f8bac4704f8 (diff) | |
download | python-coveragepy-git-6323215c36e2852c1cf56bb5d0560854e9a83a9c.tar.gz |
Will recreating the tox environments make 32- and 64-bit work properly?
-rw-r--r-- | appveyor.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/appveyor.yml b/appveyor.yml index 54f4b910..2add9171 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,25 +42,25 @@ environment: - JOB: "3.3 32-bit" TOXENV: "py33" PYTHON: "C:\\Python33" - PYTHON_VERSION: "3.3.x" + PYTHON_VERSION: "3.3" PYTHON_ARCH: "32" - JOB: "3.3 64-bit" TOXENV: "py33" PYTHON: "C:\\Python33-x64" - PYTHON_VERSION: "3.3.x" + PYTHON_VERSION: "3.3" PYTHON_ARCH: "64" - JOB: "3.4 32-bit" TOXENV: "py34" PYTHON: "C:\\Python34" - PYTHON_VERSION: "3.4.x" + PYTHON_VERSION: "3.4" PYTHON_ARCH: "32" - JOB: "3.4 64-bit" TOXENV: "py34" PYTHON: "C:\\Python34-x64" - PYTHON_VERSION: "3.4.x" + PYTHON_VERSION: "3.4" PYTHON_ARCH: "64" - JOB: "3.5 32-bit" @@ -79,14 +79,14 @@ environment: - JOB: "Meta 2.7" TOXENV: "py27" PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7.x" + PYTHON_VERSION: "2.7" PYTHON_ARCH: "32" COVERAGE_COVERAGE: "yes" - JOB: "Meta 3.4" TOXENV: "py34" PYTHON: "C:\\Python34" - PYTHON_VERSION: "3.4.x" + PYTHON_VERSION: "3.4" PYTHON_ARCH: "32" COVERAGE_COVERAGE: "yes" @@ -122,7 +122,7 @@ build_script: - ps: if ( Test-Path 'dist' -PathType Container ) { Get-ChildItem dist\*.* | % { Push-AppveyorArtifact $_.FullName -FileName ('dist\' + $_.Name) } } test_script: - - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox" + - "%CMD_IN_ENV% %PYTHON%\\Scripts\\tox --recreate" after_test: - if "%COVERAGE_COVERAGE%" == "yes" 7z a metacov-win-%TOXENV%.zip %APPVEYOR_BUILD_FOLDER%\.metacov* |