Skip to content

Commit 3c36213

Browse files
committed
ci2
1 parent 32e3f4f commit 3c36213

1 file changed

Lines changed: 11 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ jobs:
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

0 commit comments

Comments
 (0)