releases/.travis.yml

19 lines
396 B
YAML
Raw Normal View History

2013-11-15 14:29:42 -08:00
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
2013-11-15 14:29:42 -08:00
- "pypy"
2016-04-27 22:50:35 -07:00
#- "pypy3" # Looks like Sphinx (as of 1.4.1) is not pypy3 compat
2013-11-15 14:29:42 -08:00
install:
- pip install -r dev-requirements.txt
script:
2014-04-06 10:50:22 -07:00
# Primary test suite
2013-11-15 14:29:42 -08:00
- inv test
2014-04-06 10:50:22 -07:00
# Integration-level test suite (hard to reliably test full stack in-code :()
- inv test -o --tests=integration
# Docs sanity check
- inv docs