Files
deb-python-fixtures/.travis.yml
Free Ekanayaka 9f073b9f14 Add python 3.6 support (#36)
Add 3.6 to the list of Python versions that Travis/tox will exercise. Also, switch the pypy3 target to version 3.3 (since pkg_resources is not supported anymore on 3.2).
2017-02-22 17:27:49 +01:00

25 lines
339 B
YAML

sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3.3-5.2-alpha1"
- "nightly"
install:
- pip install -U pip
- pip install -U wheel setuptools pbr
- pip install -U .[docs,test]
- pip list
- python --version
script:
- make check
- rst2html.py README README.html