Different logic for roles that have not set tox_parallel.

This commit is contained in:
Robert de Bock 2019-12-25 14:58:47 +01:00
parent 00aa7aace2
commit 22c53ecdf2
1 changed files with 1 additions and 3 deletions

View File

@ -97,10 +97,8 @@ install:
- pip install tox
script:
{% if tox_parallel is defined %}
{% if tox_parallel %}
{% if tox_parallel is defined and tox_parallel %}
- tox --parallel all
{% endif %}
{% else %}
- tox
{% endif %}