debian-python-jsonschema/.travis.yml

15 lines
326 B
YAML

language: python
python:
- "pypy"
- "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- python setup.py -q install
script:
- if [[ "$(python -c 'import sys; print(sys.version_info[:2])')" == "(2, 6)" ]]; then pip install unittest2; fi
- py.test --tb=native jsonschema
- python -m doctest README.rst