Skip to content

Commit 7d88bb6

Browse files
committedJul 31, 2016
adds tox to the travis config
1 parent a28770a commit 7d88bb6

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed
 

‎.travis.yml

+11-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,16 @@
1+
sudo: false
12
language: python
3+
python: "3.5"
4+
env:
5+
- TOXENV=py33
6+
- TOXENV=py34
7+
- TOXENV=py35
8+
- TOXENV=codestyle
9+
- TOXENV=pypi-lint
210

3-
python:
4-
- "3.3"
5-
- "3.4"
6-
- "3.5"
7-
8-
before_script:
9-
- cp tests/config-travisci.py config.py
10-
11-
install:
12-
- pip install --upgrade pip
13-
- pip install -e .
14-
- pip install slackclient # Optional dependency but Slack tests are skipped without it
15-
- pip freeze
16-
17-
script: ./run_tests.py
18-
19-
20-
# New travis docker base build.
21-
sudo: false
11+
install: pip install tox
12+
before_script: cp tests/config-travisci.py config.py
13+
script: tox
2214

2315
# notification for gitter integration
2416
notifications:

0 commit comments

Comments
 (0)
Please sign in to comment.