From c1c2d1771c129dabf2905629e960bac473f95f2a Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Tue, 5 Apr 2022 17:13:34 -0700 Subject: [PATCH] Report skipped tests in blossom (#68) For the tests running in blossom, generate a report of the skipped tests. For instance on the nightly TF container this shows ``` -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html =============================================== short test summary info ================================================ SKIPPED [1] tests/unit/io/test_avro.py:34: could not import 'uavro': No module named 'uavro' ``` --- ci/test_unit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_unit.sh b/ci/test_unit.sh index dbaf19eac..fd2bcc6b7 100755 --- a/ci/test_unit.sh +++ b/ci/test_unit.sh @@ -22,5 +22,5 @@ cd /core/ git pull origin main # Run tests -pytest /core/tests/unit +pytest -rxs /core/tests/unit