From ca3f2a6f0f5019f68cd67f9e8ae5f283466bf523 Mon Sep 17 00:00:00 2001 From: Deanna Garcia <deannagarcia@google.com> Date: Tue, 3 Jan 2023 21:47:19 +0000 Subject: [PATCH] Add debug statement --- .github/workflows/source_distribution_tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/source_distribution_tests.yml b/.github/workflows/source_distribution_tests.yml index 9f11593b78..ef5d653e71 100644 --- a/.github/workflows/source_distribution_tests.yml +++ b/.github/workflows/source_distribution_tests.yml @@ -94,6 +94,8 @@ jobs: - name: Test that module is importable run: python -v -c 'from google._upb import _message; assert "google._upb._message.MessageMeta" in str(_message.MessageMeta)' if: ${{ !matrix.pure_python }} + - name: [Debug] Print installs + run: pip list -v - name: Run the unit tests run: | TESTS=$(pip show -f protobuftests | grep pb_unit_tests.*py$ | sed 's,/,.,g' | sed 's,\\,.,g' | sed -E 's,.py$,,g')