Skip to content

Commit c88d0b9

Browse files
committed
github_actions: show tox logs
By default, the tox logs are not shown when ran in parallel. Added tox flags to enable better log reading: * --parallel-live * --parallel-no-spinner Change-Id: I706335c938ad4f75f14008ac3f3c055aa31945c1 Signed-off-by: Adrian Vladu <[email protected]>
1 parent 4c1550b commit c88d0b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cloudbase_init_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Run Cloudbase-Init unit tests with tox
3131
shell: bash
3232
run: |
33-
tox run-parallel -e py3,pep8,cover,docs
33+
tox run-parallel --parallel-live --parallel-no-spinner -e py3,pep8,cover,docs
3434
windows-unit-tests:
3535
runs-on: windows-latest
3636
strategy:
@@ -53,7 +53,7 @@ jobs:
5353
- name: Run Cloudbase-Init unit tests with tox
5454
shell: cmd
5555
run: |
56-
tox run-parallel -e py3,pep8
56+
tox run-parallel --parallel-live --parallel-no-spinner -e py3,pep8
5757
windows-functional-tests:
5858
runs-on: windows-latest
5959
strategy:

0 commit comments

Comments
 (0)