fix issue with providing a custom grid as dict #1409
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: '0 8 * * 1,4' | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10", "3.11", "3.12"] | |
os: ["ubuntu-22.04", "ubuntu-latest"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Lint | |
run: | | |
python -m pip install pre-commit | |
pre-commit run --show-diff-on-failure --all-files | |
# stop the build if there are Python syntax errors or undefined names | |
# flake8 mapchete --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
# flake8 mapchete --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Install dependencies | |
env: | |
CURL_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt | |
run: | | |
sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable | |
sudo apt-get -y update | |
sudo apt-get install -y gdal-bin python-tk libgdal-dev libproj-dev libgeos-dev | |
python -m pip install --upgrade pip wheel | |
pip install -r test/requirements.txt | |
pip install -e .[complete] | |
pip freeze | |
- name: Start containers | |
run: docker-compose -f "test/docker-compose.yml" up -d | |
# run tests | |
- name: run | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_REQUEST_PAYER: ${{ secrets.AWS_REQUEST_PAYER }} | |
CURL_CA_BUNDLE: /etc/ssl/certs/ca-certificates.crt | |
run: pytest -v --cov mapchete --cov-report xml:coverage.xml --cov-report=term-missing:skip-covered --junitxml=pytest.xml | |
# report detailed coverage in PR comment | |
- name: comment test coverage report on PR | |
uses: MishaKav/pytest-coverage-comment@main | |
with: | |
pytest-xml-coverage-path: coverage.xml | |
title: missing coverage | |
badge-title: Test Coverage | |
hide-badge: false | |
hide-report: false | |
create-new-comment: false | |
hide-comment: false | |
report-only-changed-files: false | |
remove-link-from-badge: true | |
# this will let the workflow fail if coverage is below 100% | |
- name: Pytest coverage | |
run: coverage report --skip-covered --show-missing --fail-under 100 | |
- name: Stop containers | |
if: always() | |
run: docker-compose -f "test/docker-compose.yml" down |