isso/.travis.yml

25 lines
441 B
YAML
Raw Normal View History

2013-11-18 11:41:45 +00:00
language: python
2014-01-30 20:51:16 +00:00
matrix:
include:
- python: 2.7
env: TOX_ENV=py27
- python: 3.5
env: TOX_ENV=py35
- python: 3.6
env: TOX_ENV=py36
2019-04-15 21:32:26 +00:00
- python: 3.7
dist: xenial
env: TOX_ENV=py37
2013-11-18 11:41:45 +00:00
install:
2016-02-06 19:40:15 +00:00
- pip install -U pip
2018-01-31 22:32:13 +00:00
- pip install flake8 tox
2013-11-18 11:41:45 +00:00
script:
- tox -e $TOX_ENV
2018-11-03 14:50:05 +00:00
- make flakes
notifications:
irc:
channels:
- "chat.freenode.net#isso"
on_success: change
on_failure: always