Skip to content

Commit 94907e6

Browse files
debug: check actual _asyncio module source at runtime
1 parent 0cab71b commit 94907e6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/shared.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ jobs:
9494
echo "=== Checking where anyio is loaded from ==="
9595
.venv/bin/python -c "import anyio; print('anyio location:', anyio.__file__)"
9696
97+
echo "=== Checking where _asyncio module would be loaded from ==="
98+
.venv/bin/python -c "import anyio._backends._asyncio as mod; print('_asyncio location:', mod.__file__); import inspect; print('First 100 chars of source:'); print(inspect.getsource(mod)[:500])"
99+
97100
- name: Run pytest
98101
shell: bash
99102
run: |

0 commit comments

Comments
 (0)