summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Myint <git@stevenmyint.com>2018-06-09 07:34:34 -0700
committerGitHub <noreply@github.com>2018-06-09 07:34:34 -0700
commit9a6b70c92d68f474352510bff279902bc4d1a509 (patch)
treeaafc2ef3c34040e36e8b4c07e7cc81e7ee3b77bf
parentefddb93524db7949322181d5e14c32681779a6e8 (diff)
downloadpyflakes-9a6b70c92d68f474352510bff279902bc4d1a509.tar.gz
Fix PyPy installation in AppVeyor (#336)
Example false positive: https://ci.appveyor.com/project/sigmavirus24/pyflakes/build/1.0.182
-rw-r--r--.appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 8a62cf8..5739e3b 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -31,7 +31,7 @@ install:
# Only pypy2-5.3.1 is integrated into tox, as pypy3-2.4.0 fails and
# a Windows distribution of pypy3-5.2 isnt available yet.
- - ps: $env:path = "$env:path;C:\pypy2-v5.3.1-win32"
+ - ps: $env:path = "$env:path;C:\pypy2-v5.3.1-win32;C:\pypy-2.6.1-win32\bin"
# pypy3-2.4.0 and pypy-2.6.1 are manually bootstrapped and tested
- ps: (New-Object Net.WebClient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', "$env:appveyor_build_folder\get-pip.py")