Skip to content

Commit

Permalink
fix: debug test pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
ACornuIGN committed Oct 7, 2024
1 parent 60028cf commit fcc1f9f
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/test_pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,23 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: "3.9"

- name: Install GDAL
- name: Install environment
run: |
python -m pip install --upgrade pip
python -m pip install -r ./borea_dependency/requirements-dev.txt
sudo apt-get update
sudo apt-get install gdal-bin libgdal-dev
export CPLUS_INCLUDE_PATH=/usr/include/gdal
export C_INCLUDE_PATH=/usr/include/gdal
python -m pip install GDAL==3.4.1
- name: Install environment
run: |
python -m pip install --upgrade pip
pip install -r ./borea_dependency/requirements-dev.txt
pip install GDAL==3.4.1
- name: test v1 python
run: python --version

- name: test v2 python
run: python3 --version

- name: Run unit tests with pytest
run: ./ci/test_all.sh
Expand Down

0 comments on commit fcc1f9f

Please sign in to comment.