diff options
| author | Anthony Sottile <asottile@umich.edu> | 2019-11-29 18:30:15 +0000 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2019-11-29 18:30:15 +0000 |
| commit | d99fd24ec520524b44ec92579c7178084ce2dc90 (patch) | |
| tree | f453bfc5c603859af5b5f88883bcd8b3251879dc | |
| parent | 22f44c3d1aeefd886141285da939ba2c786b5f66 (diff) | |
| parent | 8fdf262399b7c0a2d4b64f280427671eb3fc2435 (diff) | |
| download | flake8-d99fd24ec520524b44ec92579c7178084ce2dc90.tar.gz | |
Merge branch 'test_pypy' into 'master'
Test pypy in gitlab CI
See merge request pycqa/flake8!390
| -rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
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 |
