Skip to content

Commit f56164f

Browse files
committed
add travis.yml
1 parent 2c30390 commit f56164f

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.travis.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
sudo: false
2+
language: python
3+
python:
4+
- '3.5'
5+
# command to install dependencies
6+
install: "pip install -U tox"
7+
# # command to run tests
8+
env:
9+
matrix:
10+
- TESTENV=check
11+
- TESTENV=py26-pytest27
12+
- TESTENV=py26-pytest
13+
- TESTENV=py27-pytest27
14+
- TESTENV=py27-pytest
15+
- TESTENV=py34-pytest27
16+
- TESTENV=py34-pytest
17+
- TESTENV=py35-pytest27
18+
- TESTENV=py35-pytest
19+
- TESTENV=pypy-pytest27
20+
- TESTENV=pypy-pytest
21+
22+
script: tox --recreate -e $TESTENV
23+
24+
notifications:
25+
irc:
26+
channels:
27+
- "chat.freenode.net#pytest"
28+
on_success: change
29+
on_failure: change
30+
skip_join: true
31+
# email:
32+

0 commit comments

Comments
 (0)