releases/.travis.yml
2014-04-06 10:50:22 -07:00

16 lines
424 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- pip install -r dev-requirements.txt
script:
# Primary test suite
- inv test
# Integration-level test suite (hard to reliably test full stack in-code :()
- inv test -o --tests=integration
# Jinja2, used by Sphinx, does not work on Python 3.2 (but does on 3.3)
- "if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then inv docs; fi"