-
-
Notifications
You must be signed in to change notification settings - Fork 6
43 lines (34 loc) · 1.14 KB
/
Copy pathpython-app.yml
File metadata and controls
43 lines (34 loc) · 1.14 KB
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
name: Test plugin
on:
schedule:
# runs once a week
# - cron: '0 6 * * 0'
# runs every day
- cron: '0 12 * * *'
push:
branches: [ "master", "try_ci-1" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Pull qgis image
run: docker pull qgis/qgis:stable
- name: Pip install
run: |
docker run --name qgis_container --volume $(pwd):/app -w=/app qgis/qgis:stable sh -c "python3 -m pip install -r requirements_dev.txt --break-system-packages"
docker commit qgis_container qgis_with_deps
- name: Debug - List directory
run: docker run --volume $(pwd):/app -w=/app qgis_with_deps sh -c "ls -la /app"
- name: Debug - Print PYTHONPATH
run: docker run --volume $(pwd):/app -w=/app qgis_with_deps sh -c "echo \$PYTHONPATH"
- name: Run tests
run: |
docker run --volume $(pwd):/app -w=/app qgis_with_deps sh -c "
export PYTHONPATH=\$PYTHONPATH:/app && \
xvfb-run -s '+extension GLX -screen 0 1024x768x24' python3 -m pytest tests -s
"