Skip to content

Commit eb3667f

Browse files
Remove debug step from CI workflow
Removed debug import and sys.path check from CI workflow.
1 parent 24b48b4 commit eb3667f

1 file changed

Lines changed: 2 additions & 18 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,7 @@ jobs:
3131

3232
- name: Install package and test deps (editable)
3333
run: python -m pip install -e ./GabesPythonToolBox[testing]
34-
35-
- name: Debug import and sys.path
36-
run: |
37-
python - <<'PY'
38-
import sys, traceback, os
39-
print("cwd:", os.getcwd())
40-
print("env PYTHONPATH:", os.environ.get("PYTHONPATH"))
41-
print("sys.path (first 10):")
42-
for p in sys.path[:10]:
43-
print(" ", p)
44-
try:
45-
import GabesPythonToolBox
46-
print("Imported GabesPythonToolBox from:", getattr(GabesPythonToolBox, "__file__", repr(GabesPythonToolBox)))
47-
except Exception:
48-
traceback.print_exc()
49-
PY
50-
34+
5135
- name: Ensure repo on PYTHONPATH for tests
5236
run: echo "PYTHONPATH=$(pwd)" >> $GITHUB_ENV
5337

@@ -58,4 +42,4 @@ PY
5842
uses: actions/upload-artifact@v4
5943
with:
6044
name: coverage-xml
61-
path: coverage.xml
45+
path: coverage.xml

0 commit comments

Comments
 (0)