Skip to content

Commit

Permalink
chore: troubleshooting CI
Browse files Browse the repository at this point in the history
  • Loading branch information
noamteyssier committed Oct 2, 2024
1 parent 76dff3d commit f7737d3
Showing 1 changed file with 27 additions and 2 deletions.
29 changes: 27 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,38 @@ jobs:
python -m pip install --upgrade pip
pip install uv
uv venv
- name: Debug - Check venv
run: |
echo "Python version:"
python --version
echo "Pip version:"
pip --version
echo "Virtual env path:"
echo $VIRTUAL_ENV
echo "Python path:"
which python
- name: Install project
run: |
. .venv/bin/activate
uv pip install -e .[dev]
uv pip install -vv -e .[dev]
echo "Installed packages:"
pip list
- name: Debug - Check installation
run: |
. .venv/bin/activate
echo "Current directory:"
pwd
echo "Directory contents:"
ls -R
echo "Pip show geomux:"
pip show -f geomux
echo "Python path:"
python -c "import sys; print(sys.path)"
echo "Try importing geomux:"
python -c "import geomux; print(geomux.__file__)"
- name: Debug - Print Python path and package contents
run: |
. .venv/bin/activate
Expand Down

0 comments on commit f7737d3

Please sign in to comment.