Skip to content

Commit 2bb7d20

Browse files
committed
Add Travis-CI
1 parent 6721ae4 commit 2bb7d20

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.travis.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- "2.7"
5+
- "3.2"
6+
- "3.3"
7+
- "3.4"
8+
- "3.5"
9+
- "3.6"
10+
- "3.7-dev" # 3.7 development branch
11+
12+
install: "pip install -r requirements.txt; pip install tox-travis"
13+
env:
14+
- TOXENV=pep8
15+
- TOXENV=coverage
16+
script: tox
17+
before_install:
18+
- pip install codecov
19+
after_success:
20+
- codecov

0 commit comments

Comments
 (0)