From e62b4c99f4fd5848b8466d7f2d1e56e33a59f496 Mon Sep 17 00:00:00 2001 From: Aya Hassan Date: Wed, 8 Apr 2026 15:16:46 +0200 Subject: [PATCH] add debug info --- .github/workflows/test_common.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index e920434bd..20b97855a 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -74,6 +74,23 @@ jobs: - name: Remove unwanted software uses: ./.github/actions/prune-vm + - name: Debug Python import paths + run: | + pwd + echo "PYTHONPATH=$PYTHONPATH" + find . -maxdepth 5 | grep wrapper || true + python - <<'PY' + import sys + print("sys.path:") + for p in sys.path: + print(p) + try: + import wrapper + print("wrapper import OK:", wrapper) + except Exception as e: + print("wrapper import failed:", e) + PY + - uses: actions/setup-python@v4 with: python-version: '3.12'