Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Commit 23d578d

Browse files
committed
Update travis config
1 parent f8b2841 commit 23d578d

File tree

2 files changed

+23
-11
lines changed

2 files changed

+23
-11
lines changed

.travis.yml

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
11
language: python
2-
python:
3-
- 2.7
4-
- 3.5
5-
- 3.6
6-
sudo: false
7-
env:
8-
- DISPLAY=:0.0
2+
matrix:
3+
include:
4+
- python: 2.7
5+
env:
6+
- TOX_ENV=images
7+
- python: 3.5
8+
env:
9+
- TOX_ENV=images
10+
- python: 2.7
11+
env:
12+
- TOX_ENV=integration
13+
- python: 3.6
14+
env:
15+
- TOX_ENV=integration
16+
- python: 3.6
17+
env:
18+
- TOX_ENV=lint
919
install:
10-
- pip install -U tox-travis
11-
script:
20+
- pip install -U tox
21+
before_script:
1222
- export APPLITOOLS_BATCH_ID=`uuidgen -t`
1323
- echo $APPLITOOLS_BATCH_ID
14-
- tox
24+
script:
25+
- tox -e $TOX_ENV

tasks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def install_requirements(c, dev=None, testing=None, lint=None):
4848
'pytest==3.8.2',
4949
'pytest-cov',
5050
'pytest-xdist',
51-
'pytest_virtualenv',
51+
'virtualenv',
52+
'pytest-virtualenv',
5253
]
5354
lint_requires = [
5455
'flake8',

0 commit comments

Comments
 (0)