diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 08:23:37 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-09-10 08:23:37 -0400 |
commit | 645db8eca054be2286928371128923e52997a835 (patch) | |
tree | 476c23d77041344275f26b860adfbc5ddb437f17 | |
parent | 8da07577d2f530173e06585539a80ecc334ef9d7 (diff) | |
download | python-coveragepy-git-645db8eca054be2286928371128923e52997a835.tar.gz |
Fix the bat-writer
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 979bb500..45e8e666 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'@{0}\\python %*'+'\\n'.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 %*'.format(os.environ['PYTHON'])+'\\n')\"" build_script: # If not a metacov job, then build wheels and .exe installers. |