-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (37 loc) · 1.42 KB
/
test_plugin.yaml
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
name: Tests for Plugin LoS Tools
on:
push:
paths:
- "los_tools/**"
- ".github/workflows/test_plugin.yaml"
- "tests/**"
jobs:
Tests-plugin-LoS-Tools:
runs-on: ubuntu-latest
steps:
- name: GIS Sources
run: |
sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
- name: Install QGIS
run: |
sudo wget -qO /etc/apt/keyrings/qgis-archive-keyring.gpg https://download.qgis.org/downloads/qgis-archive-keyring.gpg
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/qgis-archive-keyring.gpg] https://qgis.org/ubuntugis `lsb_release -c -s` main" > /etc/apt/sources.list.d/qgis.list'
sudo apt-get update
sudo apt-get install -y qgis
- name: QGIS Version
run: qgis --version
- name: Install Python packages
run: pip install pytest pytest-qgis pytest-cov
- name: Checkout
uses: actions/checkout@v4
- name: Add Python Path
run: |
echo "PYTHONPATH=$PYTHONPATH:$PWD" >> $GITHUB_ENV
echo "DEBIAN_FRONTEND=noninteractive" >> $GITHUB_ENV
echo "QT_QPA_PLATFORM=offscreen" >> $GITHUB_ENV
echo "XDG_RUNTIME_DIR=/tmp" >> $GITHUB_ENV
- name: Print Python Path
run: echo $PYTHONPATH
- name: Run Tests
run: |
pytest tests --cov=los_tools --cov-report=term-missing:skip-covered -rP -s