From 9a6b70c92d68f474352510bff279902bc4d1a509 Mon Sep 17 00:00:00 2001 From: Steven Myint Date: Sat, 9 Jun 2018 07:34:34 -0700 Subject: Fix PyPy installation in AppVeyor (#336) Example false positive: https://ci.appveyor.com/project/sigmavirus24/pyflakes/build/1.0.182 --- .appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- cgit v1.2.1