
As that's the state of the art. For travis we install python 3.5 as the base python and then test from there. This gets around some limitations in travis.
24 lines
406 B
YAML
24 lines
406 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "3.5"
|
|
install:
|
|
- pip install tox
|
|
script:
|
|
- tox
|
|
env:
|
|
- TOXENV=py27
|
|
- TOXENV=py32
|
|
- TOXENV=py33
|
|
- TOXENV=py34
|
|
- TOXENV=py35
|
|
- TOXENV=pypy
|
|
- TOXENV=pypy3
|
|
- TOXENV=pep8
|
|
- TOXENV=py35-failskip
|
|
- TOXENV=py35-limit
|
|
- TOXENV=py35-prefix
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#gabbi"
|