fix for default tab on first opening #65
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
name: tests | |
on: [pull_request, push] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
container: | |
image: qgis/qgis:${{ matrix.qgis-tags }} | |
strategy: | |
matrix: | |
qgis-tags: [3.34, 3.36, latest] | |
fail-fast: false | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install qgis dependencies | |
run: | | |
pip3 install -qr zonal_exact/python_requirements/qgis_requirements.txt --break-system-packages | |
- name: Install dev dependencies | |
run: | | |
pip3 install -qr zonal_exact/python_requirements/dev_requirements.txt --break-system-packages | |
- name: Run tests | |
run: | | |
pytest -v --qgis_disable_gui | |
env: | |
QT_QPA_PLATFORM: offscreen | |
QGIS_PLUGIN_IN_CI: 1 | |
QGIS_PLUGIN_TOOLS_IN_CI: 1 | |