-
Notifications
You must be signed in to change notification settings - Fork 26
73 lines (63 loc) · 1.66 KB
/
ci.yml
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
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
types:
- edited
- opened
- reopened
- synchronize
branches:
- main
env:
# Global environment variable
IMAGE: qgis/qgis
WITH_PYTHON_PEP: "true"
MUTE_LOGS: "true"
jobs:
test:
runs-on: ubuntu-22.04
name: Running tests on QGIS ${{ matrix.qgis_version_tag }}
strategy:
fail-fast: false
matrix:
qgis_version_tag:
- release-3_16
- release-3_22
- release-3_34
- release-3_36
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Preparing docker-compose environment
env:
QGIS_VERSION_TAG: ${{ matrix.qgis_version_tag }}
run: |
cat << EOF > .env
QGIS_VERSION_TAG=${QGIS_VERSION_TAG}
IMAGE=${IMAGE}
ON_TRAVIS=true
MUTE_LOGS=${MUTE_LOGS}
WITH_PYTHON_PEP=${WITH_PYTHON_PEP}
EOF
- name: Install poetry
uses: Gr1N/setup-poetry@v8
with:
poetry-version: 1.2.2
- name: Install plugin dependencies
run: poetry install
- name: Preparing test environment
run: |
cat .env
docker pull "${IMAGE}":${{ matrix.qgis_version_tag }}
poetry run python admin.py build --tests
docker-compose up -d
sleep 10
- name: Run test suite
run: |
docker-compose exec -T qgis-testing-environment sh -c "pip3 install flask"
docker-compose exec -T qgis-testing-environment qgis_testrunner.sh test_suite.test_package