We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cab71b commit 94907e6Copy full SHA for 94907e6
.github/workflows/shared.yml
@@ -94,6 +94,9 @@ jobs:
94
echo "=== Checking where anyio is loaded from ==="
95
.venv/bin/python -c "import anyio; print('anyio location:', anyio.__file__)"
96
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
+
100
- name: Run pytest
101
shell: bash
102
run: |
0 commit comments