-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests] Print versions being used; add test for PG: copying JSON to J…
…SON (disabled, since it fails for now)
- Loading branch information
1 parent
0103289
commit e06d3ef
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import qgis.core | ||
from qgis.PyQt.sip import SIP_VERSION_STR | ||
from qgis.PyQt.QtCore import QT_VERSION_STR | ||
from qgis.PyQt.Qt import PYQT_VERSION_STR | ||
from qgis.core import Qgis | ||
|
||
print("# # # # # # # # # # # # # # #") | ||
print("QGIS version:", Qgis.QGIS_VERSION) | ||
print("Qt version:", QT_VERSION_STR) | ||
print("SIP version:", SIP_VERSION_STR) | ||
print("PyQt version:", PYQT_VERSION_STR) | ||
print("# # # # # # # # # # # # # # #") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters