summaryrefslogtreecommitdiffstats
path: root/third_party/python/pytest/scripts/install-pypy.bat
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/python/pytest/scripts/install-pypy.bat')
-rw-r--r--third_party/python/pytest/scripts/install-pypy.bat6
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/python/pytest/scripts/install-pypy.bat b/third_party/python/pytest/scripts/install-pypy.bat
new file mode 100644
index 0000000000..8012ea46ac
--- /dev/null
+++ b/third_party/python/pytest/scripts/install-pypy.bat
@@ -0,0 +1,6 @@
+REM install pypy using choco
+REM redirect to a file because choco install python.pypy is too noisy. If the command fails, write output to console
+choco install python.pypy > pypy-inst.log 2>&1 || (type pypy-inst.log & exit /b 1)
+set PATH=C:\tools\pypy\pypy;%PATH% # so tox can find pypy
+echo PyPy installed
+pypy --version