Commit 1cddc0c4 authored by Kevin Lyda's avatar Kevin Lyda 💬
Browse files

Add pypy test support.

parent 4be783b2
Pipeline #1022 failed with stage
in 4 minutes and 10 seconds
......@@ -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
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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment