summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Tools/ci-run.sh2
-rw-r--r--test-requirements-pypy27.txt1
2 files changed, 3 insertions, 0 deletions
diff --git a/Tools/ci-run.sh b/Tools/ci-run.sh
index 4309fd4ad..0585f9a04 100644
--- a/Tools/ci-run.sh
+++ b/Tools/ci-run.sh
@@ -76,6 +76,8 @@ else
if [[ $PYTHON_VERSION != "pypy"* && $PYTHON_VERSION != "3."[1]* ]]; then
python -m pip install -r test-requirements-cpython.txt || exit 1
+ elif [[ $PYTHON_VERSION == "pypy-2.7" ]]; then
+ python -m pip install -r test-requirements-pypy27.txt || exit 1
fi
fi
fi
diff --git a/test-requirements-pypy27.txt b/test-requirements-pypy27.txt
new file mode 100644
index 000000000..369b7225a
--- /dev/null
+++ b/test-requirements-pypy27.txt
@@ -0,0 +1 @@
+enum34==1.1.10