We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c3c253 commit 5427dd0Copy full SHA for 5427dd0
.github/workflows/_test.yml
@@ -205,15 +205,7 @@ 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 "
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
215
- traceback.print_exc()
216
-"
+ python -c "import httpmorph._httpmorph; print('SUCCESS: C extension loaded')" || python -c "import traceback; traceback.print_exc()"
217
shell: bash
218
219
- name: Lint
0 commit comments