File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 run : python -m pip install --upgrade pip build setuptools wheel
4242
4343 - name : Install package and test deps (editable)
44- # install from repo root so pyproject.toml optional deps are available
4544 run : python -m pip install -e ".[testing]"
4645
4746 - name : Ensure repo on PYTHONPATH (optional)
@@ -50,17 +49,17 @@ jobs:
5049 - name : Debug Python path and import package
5150 run : |
5251 python - <<'PY'
53- import sys, importlib
54- print("=== sys.path ===")
55- for p in sys.path :
56- print(" -", p)
57- try :
58- mod = importlib.import_module("GabesPythonToolBox")
59- print("Imported GabesPythonToolBox from:", getattr(mod, "__file__", "<built-in>"))
60- except Exception as e :
61- print("Import failed:", repr(e))
62- raise
63- PY
52+ import sys, importlib
53+ print("=== sys.path ===")
54+ for p in sys.path:
55+ print(" -", p)
56+ try:
57+ mod = importlib.import_module("GabesPythonToolBox")
58+ print("Imported GabesPythonToolBox from:", getattr(mod, "__file__", "<built-in>"))
59+ except Exception as e:
60+ print("Import failed:", repr(e))
61+ raise
62+ PY
6463
6564 - name : Run tests with coverage
6665 run : pytest -q --cov=GabesPythonToolBox --cov-report=xml
You can’t perform that action at this time.
0 commit comments