summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-10 09:45:25 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-10 09:45:25 -0400
commit0f4eb0a5c3b2ed76f85c627961ef92065769ebe2 (patch)
tree163b5ae5037f2855135a298df27e0107f8fd4e64 /appveyor.yml
parent2059f7082d6e1fae78b10e9d6f10bc5385cf7cb2 (diff)
downloadpython-coveragepy-git-0f4eb0a5c3b2ed76f85c627961ef92065769ebe2.tar.gz
Clean up the batch file hack; 3.5rc4 is out; 64-bit builds succeed
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml15
1 files changed, 5 insertions, 10 deletions
diff --git a/appveyor.yml b/appveyor.yml
index a8b9b9d3..a957a893 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -5,11 +5,6 @@ version: '{branch}-{build}'
shallow_clone: true
-matrix:
-
- allow_failures:
- - PYTHON_ARCH: "64"
-
environment:
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci\\run_with_env.cmd"
@@ -65,14 +60,14 @@ environment:
- JOB: "3.5 32-bit"
TOXENV: "py35"
- PYTHON: "C:\\Python35rc2"
- PYTHON_VERSION: "3.5.0rc2"
+ PYTHON: "C:\\Python35rc4"
+ PYTHON_VERSION: "3.5.0rc4"
PYTHON_ARCH: "32"
- JOB: "3.5 64-bit"
TOXENV: "py35"
- PYTHON: "C:\\Python35rc2-x64"
- PYTHON_VERSION: "3.5.0rc2"
+ PYTHON: "C:\\Python35rc4-x64"
+ PYTHON_VERSION: "3.5.0rc4"
PYTHON_ARCH: "64"
# Meta coverage
@@ -116,7 +111,7 @@ install:
# Make a python3.4.bat file in the current directory so that tox will find it
# and python3.4 will mean what we want it to.
- - "python -c \"import os; toxenv = os.environ['TOXENV']; bat = open('python{0}.{1}.bat'.format(*toxenv[2:]), 'w'); bat.write(r'@{0}\\python'.format(os.environ['PYTHON'])+' \\x25*\\n')\""
+ - "python -c \"import os; open('python{0}.{1}.bat'.format(*os.environ['TOXENV'][2:]), 'w').write('@{0}\\\\python \\x25*\\n'.format(os.environ['PYTHON']))\""
build_script:
# If not a metacov job, then build wheels and .exe installers.