1
0
Fork 0

Experiment running tests only once per environment. Old version runs tests through 16 times instead of 4 times in total.

Idea taken from https://github.com/eventlet/eventlet/blob/master/.travis.yml.
This commit is contained in:
Karl-Aksel Puulmann 2015-01-07 22:06:24 +02:00
parent d566ff3286
commit 40c582e4c7
2 changed files with 7 additions and 7 deletions

View File

@ -1,10 +1,10 @@
language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
install: pip install tox
script: tox
script: tox -e $TOX_ENV

View File

@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33
envlist = py26, py27, py33, py34
[testenv]
deps = pytest
mock