summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-10 08:20:19 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-10 08:20:19 -0400
commit4bc2ab18c4a72b0e6646d93a136bb6c7750833d1 (patch)
tree1596804a298aa241c45b705d412b99e9c8c0104e
parent6d5c20e9275d1dbec7476bb6d98e8f0dd0bbe45e (diff)
downloadpython-coveragepy-git-4bc2ab18c4a72b0e6646d93a136bb6c7750833d1.tar.gz
Fix the bat-writer
-rw-r--r--appveyor.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 21dbc851..3fe4cbea 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -116,8 +116,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'@C:\\{0}\\python %*'.format(os.environ['PYTHON']))\""
- - "TYPE python2.6.bat"
+ - "python -c \"import os; toxenv = os.environ['TOXENV']; bat = open('python{0}.{1}.bat'.format(*toxenv[2:]), 'w'); bat.write(r'@{0}\\python %*'+'\\n'.format(os.environ['PYTHON']))\""
build_script:
# If not a metacov job, then build wheels and .exe installers.