We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62a245e commit b7c0d83Copy full SHA for b7c0d83
1 file changed
.github/workflows/_test.yml
@@ -203,8 +203,15 @@ jobs:
203
echo "Checking for built C extensions..."
204
find . -name "*.pyd" -o -name "*.so" 2>/dev/null || echo "No extensions found"
205
ls -R build/ 2>/dev/null || echo "No build directory"
206
- echo "PATH: $PATH"
207
- python -c "import httpmorph._httpmorph; print('C extension loaded successfully')" || echo "Failed to import C extension"
+ echo "Checking DLL dependencies..."
+ python -c "import sys; print('Python path:', sys.path)"
208
+ python -c "try:
209
+ import httpmorph._httpmorph
210
+ print('SUCCESS: C extension loaded')
211
+except Exception as e:
212
+ print(f'FAILED: {type(e).__name__}: {e}')
213
+ import traceback
214
+ traceback.print_exc()"
215
shell: bash
216
217
- name: Lint
0 commit comments