From 8fdf262399b7c0a2d4b64f280427671eb3fc2435 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Fri, 29 Nov 2019 10:26:48 -0800 Subject: [PATCH] Test pypy in gitlab CI --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 518c3b3..2671db1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,6 +14,16 @@ after_script: - pip install codecov - codecov --token=7d117e6b-aab6-4283-ab19-166dafc38cf5 +pypy2: + image: pypy:2.7-7.2.0 + stage: test + script: tox -e pypy + +pypy3: + image: pypy:3.6-7.2.0 + stage: test + script: tox -e pypy3 + python2: image: python:2.7 stage: test