Skip to content

Commit

Permalink
github_actions: show tox logs
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
ader1990 committed May 23, 2024
1 parent 4c1550b commit c88d0b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cloudbase_init_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Run Cloudbase-Init unit tests with tox
shell: bash
run: |
tox run-parallel -e py3,pep8,cover,docs
tox run-parallel --parallel-live --parallel-no-spinner -e py3,pep8,cover,docs
windows-unit-tests:
runs-on: windows-latest
strategy:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Run Cloudbase-Init unit tests with tox
shell: cmd
run: |
tox run-parallel -e py3,pep8
tox run-parallel --parallel-live --parallel-no-spinner -e py3,pep8
windows-functional-tests:
runs-on: windows-latest
strategy:
Expand Down

0 comments on commit c88d0b9

Please sign in to comment.