You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci-test.yml
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,18 @@ jobs:
37
37
poetry install --no-interaction --no-ansi
38
38
poetry run pip install -e .
39
39
40
+
# DEBUG: Check package installation
41
+
- name: Debug package installation
42
+
run: |
43
+
echo "=== Installed packages ==="
44
+
poetry run pip list | grep -i leetcode || true
45
+
echo "=== Package metadata ==="
46
+
poetry run python -c "import importlib.metadata; print([p for p in importlib.metadata.distributions() if 'leetcode' in p.metadata['Name'].lower()])" || true
47
+
echo "=== Direct version check ==="
48
+
poetry run python -c "from importlib.metadata import version; print(version('leetcode-py'))" || echo "leetcode-py not found"
49
+
poetry run python -c "from importlib.metadata import version; print(version('leetcodepy'))" || echo "leetcodepy not found"
50
+
poetry run python -c "from importlib.metadata import version; print(version('leetcode_py'))" || echo "leetcode_py not found"
0 commit comments