Skip to content

Commit 549991b

Browse files
author
Axel Hörteborn
committed
fix for gitlab ci
1 parent 656a46a commit 549991b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/python-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
docker commit qgis_container qgis_with_deps
3131
3232
- name: Run tests
33-
run: docker run --volume $(pwd):/app -w=/app qgis_with_deps sh -c "xvfb-run -s '+extension GLX -screen 0 1024x768x24' python3 -m pytest tests -s"
33+
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"

Diff for: database_scripts/db.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import traceback
1111
import sys
1212
from qgis.core import QgsDataSourceUri, QgsVectorLayer
13-
from PyQt5.QtWidgets import QMessageBox
13+
from PyQt5.QtWidgets import QMessageBox, QInputDialog
1414
try:
1515
from ..support_scripts.__init__ import TR
1616
except ImportError:

0 commit comments

Comments
 (0)