From 8d6c37cb5ac76fac1be29ce7023d95922e18e290 Mon Sep 17 00:00:00 2001 From: Bastian Krause Date: Mon, 30 Sep 2024 12:57:55 +0200 Subject: [PATCH] github: show extra test summary The extra test summary shows additional information such as why a test was skipped. This is helpful to compare test runs on different Python versions and git states. Signed-off-by: Bastian Krause --- .github/workflows/reusable-unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-unit-tests.yml b/.github/workflows/reusable-unit-tests.yml index 13e4967f1..5ba1f9354 100644 --- a/.github/workflows/reusable-unit-tests.yml +++ b/.github/workflows/reusable-unit-tests.yml @@ -57,7 +57,7 @@ jobs: ruff format --check --diff labgrid/remote/ - name: Test with pytest run: | - pytest --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon" + pytest -r a --cov-config .coveragerc --cov=labgrid --local-sshmanager --ssh-username runner -k "not test_docker_with_daemon" - name: Build documentation run: | make -C doc clean