mirror of
https://github.com/nicolabs/ansible-role-grub.git
synced 2026-05-21 11:58:46 +02:00
Don't run parallel.
This commit is contained in:
parent
2b62233918
commit
d32a85d2e9
3
.github/workflows/molecule.yml
vendored
3
.github/workflows/molecule.yml
vendored
|
|
@ -71,6 +71,3 @@ jobs:
|
||||||
with:
|
with:
|
||||||
image: ${{ matrix.config.image }}
|
image: ${{ matrix.config.image }}
|
||||||
tag: ${{ matrix.config.tag }}
|
tag: ${{ matrix.config.tag }}
|
||||||
options: "--parallel all"
|
|
||||||
env:
|
|
||||||
TOX_PARALLEL_NO_SPINNER: 1
|
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- function retry { counter=0 ; until "$@" ; do exit=$? ; counter=$(($counter + 1)) ; if [ $counter -ge 3 ] ; then return $exit ; fi ; done ; return 0; } ; retry tox --parallel all
|
- function retry { counter=0 ; until "$@" ; do exit=$? ; counter=$(($counter + 1)) ; if [ $counter -ge 3 ] ; then return $exit ; fi ; done ; return 0; } ; retry tox
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
||||||
|
|
|
||||||
1
tox.ini
1
tox.ini
|
|
@ -14,6 +14,7 @@ deps =
|
||||||
next: git+https://github.com/ansible/ansible.git@devel
|
next: git+https://github.com/ansible/ansible.git@devel
|
||||||
molecule[docker]>=3, <4
|
molecule[docker]>=3, <4
|
||||||
docker>=4.2, <4.3
|
docker>=4.2, <4.3
|
||||||
|
ansible-lint
|
||||||
commands = molecule test
|
commands = molecule test
|
||||||
setenv =
|
setenv =
|
||||||
TOX_ENVNAME={envname}
|
TOX_ENVNAME={envname}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue