workflow: show summary why tests are skipped
In PR#1752 Florian noticed that `make_containers` is buggy [0] in one specific testcase. However the GH actions did not trigger and uppon inspection the test is skipped: ``` stages/test/test_container_deploy.py::test_container_deploy_integration SKIPPED [ 7%] ``` This commit adds `-rs` to get a summary why the tests are skipped. This is useful in general, I suspect the test container might miss podman but this commit will bring clarity. [0] https://github.com/osbuild/osbuild/pull/1752#discussion_r1578294358
This commit is contained in:
parent
4a51bafa46
commit
15e969c4c6
1 changed files with 1 additions and 1 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
TEST_CATEGORY="not test_stages.py and not test_assemblers.py"
|
||||
fi
|
||||
OSBUILD_TEST_STORE="${{ env.OSBUILD_TEST_STORE }}" \
|
||||
tox -e "${{ matrix.environment }}" -- $TEST_WORKERS -k "$TEST_CATEGORY"
|
||||
tox -e "${{ matrix.environment }}" -- -rs $TEST_WORKERS -k "$TEST_CATEGORY"
|
||||
|
||||
v1_manifests:
|
||||
name: "Assembler test (legacy)"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue