Files
deb-python-json-pointer/.travis.yml
Stefan Kögl de059035de Drop support for Python 3.2
coverage.py does not support it anymore and it is not worth to work around it.
2015-10-28 20:05:54 +01:00

21 lines
245 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install:
- travis_retry pip install coveralls
script:
- coverage run --source=jsonpointer tests.py
after_script:
- coveralls
sudo: false