revert; try to use --parallel cli option

This commit is contained in:
Robert Kaussow 2019-01-28 16:58:17 +01:00
parent 73231dd3e4
commit 9c412b13b6
2 changed files with 4 additions and 5 deletions

View File

@ -10,7 +10,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -q
- tox -e $(tox -l | grep py27 | xargs | sed 's/ /,/g') -p -q
when:
event:
- push
@ -23,7 +23,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -q
- tox -e $(tox -l | grep py35 | xargs | sed 's/ /,/g') -p -q
when:
event:
- push
@ -36,7 +36,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -q
- tox -e $(tox -l | grep py36 | xargs | sed 's/ /,/g') -p -q
when:
event:
- push
@ -49,7 +49,7 @@ steps:
PY_COLORS: "1"
commands:
- pip install tox -q
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -q
- tox -e $(tox -l | grep py37 | xargs | sed 's/ /,/g') -p -q
when:
event:
- push

View File

@ -1,6 +1,5 @@
[tox]
minversion = 3.5
isolated_build=true
envlist = py27-ansible{21},py{27,35,36,37}-ansible{22,23,24,25,26,27},py{27,35,36,37}-flake8
[testenv]