diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3c192cd9b48e2cb633b5ff4945bf756b31f611f..b39a05566d613902977ea76fe6294f662c083cf5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,3 +30,16 @@ test:3.6: type: test script: - python setup.py test + +test:pypy-2: + image: pypy:2-slim + type: test + script: + - python setup.py test + +test:pypy-3: + image: pypy:3-slim + type: test + script: + - python setup.py test + diff --git a/.travis.yml b/.travis.yml index dffabfb8f7576bf1b94b9ead45e48a6f5dd71770..b0f8abeb8dc8dd492256d00b8b49963e68de3c1a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,10 @@ language: python python: - - "2.6" - "2.7" - - "3.2" - "3.3" + - "3.6" - "pypy" install: - - if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip --quiet install unittest2; fi - python setup.py install script: - python setup.py test