diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 02ba22358..3ccb764f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,19 +25,19 @@ jobs: - name: Install requirements 📦 run: | # follow GDAL installed version for Python bindings - # - pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1` - - pip3 install -r requirements.txt - - pip3 install -r requirements-dev.txt + # pip3 install GDAL==`gdalinfo --version | cut -d' ' -f2 | cut -d',' -f1` + pip3 install -r requirements.txt + pip3 install -r requirements-dev.txt # - pip3 install -r requirements-provider.txt - - python3 setup.py install - - pip3 install --upgrade rasterio==1.1.8 + python3 setup.py install + pip3 install --upgrade rasterio==1.1.8 - name: run unit tests ⚙️ run: | - - pytest tests/test_config.py - - pytest tests/test_openapi.py - - pytest tests/test_util.py - - pytest tests/test_api.py - - pytest tests/test_csv_*.py + pytest tests/test_config.py + pytest tests/test_openapi.py + pytest tests/test_util.py + pytest tests/test_api.py + pytest tests/test_csv_*.py - name: build docs 🏗️ run: cd docs && make html