Skip to content

Commit db58a03

Browse files
committed
Setup travis
1 parent 970ec3e commit db58a03

File tree

1 file changed

+26
-7
lines changed

1 file changed

+26
-7
lines changed

.travis.yml

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,34 @@
11
language: python
22

3-
python:
4-
- "2.7"
5-
- "3.3"
6-
- "3.4"
7-
- "3.5"
3+
sudo: false
4+
5+
env:
6+
matrix:
7+
- TOXENV=py27-dj15
8+
- TOXENV=py27-dj16
9+
- TOXENV=py27-dj17
10+
- TOXENV=py27-dj18
11+
- TOXENV=py34-dj15
12+
- TOXENV=py34-dj16
13+
- TOXENV=py34-dj17
14+
- TOXENV=py34-dj18
15+
- TOXENV=pypy19-dj15
16+
- TOXENV=pypy19-dj16
17+
- TOXENV=pypy19-dj17
18+
- TOXENV=pypy19-dj18
19+
- TOXENV=py27-dj14
20+
- TOXENV=pypy19-dj14
21+
- TOXENV=flake8
22+
23+
cache:
24+
directories:
25+
- $HOME/.wheelhouse
826

927
install:
10-
- pip install -r requirements-test.txt
28+
- pip install tox
1129
- pip install coveralls
1230

13-
script: py.test --flake8 --cov djclick
31+
script:
32+
- tox -e $TOXENV
1433

1534
after_success: coveralls

0 commit comments

Comments
 (0)