We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7c0d83 commit 2c3c253Copy full SHA for 2c3c253
.github/workflows/_test.yml
@@ -205,13 +205,15 @@ jobs:
205
ls -R build/ 2>/dev/null || echo "No build directory"
206
echo "Checking DLL dependencies..."
207
python -c "import sys; print('Python path:', sys.path)"
208
- python -c "try:
+ python -c "
209
+try:
210
import httpmorph._httpmorph
211
print('SUCCESS: C extension loaded')
212
except Exception as e:
213
print(f'FAILED: {type(e).__name__}: {e}')
214
import traceback
- traceback.print_exc()"
215
+ traceback.print_exc()
216
+"
217
shell: bash
218
219
- name: Lint
0 commit comments