-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
45 lines (38 loc) · 833 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9-dev"
- "pypy"
before_install:
pip install codecov
matrix:
# allow_failures:
# - python: "3.5"
# - python: "3.6"
# - python: "3.7"
include:
- python: 2.7
install: pip install -U flake8
script: flake8 --ignore E501,W191,C901,E265,E402,E117
after_success:
- python: 3.5
install: pip install -U flake8
script: flake8 --ignore E501,W191,C901,E265,E402,E117
after_success:
# - python: 2.7
# install: pip install -U isort
# script: isort -c --diff
# after_success:
install:
- pip install -Ur requirements-test.txt
- pip install -Ue .
script: python setup.py test
after_success:
- codecov
- coveralls
notifications:
irc: "chat.freenode.net#httoop"