We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656a46a commit 549991bCopy full SHA for 549991b
.github/workflows/python-app.yml
@@ -30,4 +30,4 @@ jobs:
30
docker commit qgis_container qgis_with_deps
31
32
- 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"
+ 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"
database_scripts/db.py
@@ -10,7 +10,7 @@
10
import traceback
11
import sys
12
from qgis.core import QgsDataSourceUri, QgsVectorLayer
13
-from PyQt5.QtWidgets import QMessageBox
+from PyQt5.QtWidgets import QMessageBox, QInputDialog
14
try:
15
from ..support_scripts.__init__ import TR
16
except ImportError:
0 commit comments