1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * 0'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
env:
PYPROJ_FULL_COVERAGE: YES
DEBIAN_FRONTEND: noninteractive
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.1
- name: Install mypy
run: |
python -m pip install mypy types-certifi
- name: mypy
run: |
mypy pyproj
docker_tests:
needs: linting
runs-on: ubuntu-latest
name: Docker | python=${{ matrix.python-version }} | PROJ=${{ matrix.proj-version }}
container: ghcr.io/osgeo/proj:${{ matrix.proj-version }}
strategy:
fail-fast: false
matrix:
python-version: ['3.11', '3.12', '3.13']
proj-version: ['9.6.0']
include:
- python-version: '3.11'
proj-version: '9.5.1'
- python-version: '3.11'
proj-version: '9.4.1'
steps:
- uses: actions/checkout@v5
- name: Update
run: |
apt-get update
apt-get -y install software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update
- name: Set up Python ${{ matrix.python-version }}
run: |
apt-get install -y --no-install-recommends \
python${{ matrix.python-version }} \
python${{ matrix.python-version }}-dev \
python${{ matrix.python-version }}-venv \
python3-pip \
g++
- name: Install dependencies
run: |
python${{ matrix.python-version }} -m venv testenv
. testenv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
python -m pip install -e .
python -m pip install -r requirements-test.txt
- name: Test
shell: bash
run: |
. testenv/bin/activate
python -m pytest --cov-report term-missing --cov=pyproj --cov-report xml
- name: Test Network
shell: bash
env:
PROJ_NETWORK: ON
run: |
. testenv/bin/activate
python -m pytest
- name: Test Grids
shell: bash
run: |
. testenv/bin/activate
projsync --quiet --bbox -175,0,-50,85
python -m pytest
conda_tests:
needs: linting
name: Conda ${{ matrix.os }} | ${{ matrix.python-implementation }}=${{ matrix.python-version }} | PROJ=${{ matrix.proj-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11', '3.12', '3.13']
python-implementation: [python]
proj-version: ['*']
# DISABLED UNTIL CONDA-FORGE PYPY SUPPORTS PYTHON 3.11+
# include:
# - os: ubuntu-latest
# python-version: '*'
# python-implementation: pypy
# proj-version: '*'
steps:
- uses: actions/checkout@v5
- name: Setup Conda
uses: mamba-org/setup-micromamba@v2
with:
# https://github.com/mamba-org/setup-micromamba/issues/225
micromamba-version: 1.5.10-0
init-shell: bash
environment-name: test
create-args: >-
${{ matrix.python-implementation }}=${{ matrix.python-version }}
cython
proj=${{ matrix.proj-version }}
numpy
shapely
xarray
pandas
- name: Install Env
shell: bash
run: |
if [ "${{ matrix.python-implementation }}" = "pypy" ]; then
sed -i.bak '/xarray/d' requirements-test.txt;
sed -i.bak '/pandas/d' requirements-test.txt;
fi;
micromamba run -n test python -m pip install -e .
micromamba run -n test python -m pip install -r requirements-test.txt
- name: Check and Log Environment
shell: bash
run: |
micromamba run -n test python -V
micromamba run -n test pyproj -v
micromamba info
- name: Install pylint
shell: bash
if: matrix.python-implementation == 'python'
run: |
micromamba run -n test python -m pip install pylint
- name: pylint
shell: bash
if: matrix.python-implementation == 'python'
run: |
micromamba run -n test python -m pylint pyproj
- name: Test with Coverage
shell: bash
if: matrix.python-implementation == 'python'
run: |
micromamba run -n test python -m pytest --cov-report term-missing --cov=pyproj --cov-report xml
- name: Test
shell: bash
if: matrix.python-implementation == 'pypy'
env:
PROJ_NETWORK: OFF
run: |
micromamba run -n test python -m pytest
- name: Test Network
shell: bash
env:
PROJ_NETWORK: ON
run: |
micromamba run -n test python -m pytest
- name: Test Grids
shell: bash
env:
PROJ_NETWORK: OFF
run: |
micromamba run -n test projsync --quiet --bbox -175,0,-50,85
micromamba run -n test python -m pytest
- name: Test Build docs
shell: bash
if: contains(matrix.os, 'ubuntu') && matrix.python-implementation == 'python'
run: |
micromamba run -n test python -m pip install -r requirements-docs.txt
micromamba run -n test sphinx-build -b html docs/ docs/_build/
micromamba run -n test sphinx-build -b man docs/ docs/_build/
- uses: codecov/codecov-action@v5
|