File tree 1 file changed +13
-10
lines changed
1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
- from qgis .core import QgsProject
3
- from test_qgsserver_wms import TestQgsServerWMSTestBase
4
- from qgis .PyQt .QtCore import QSize
5
- from qgis .testing import unittest
6
- import json
7
- import xml .etree .ElementTree as ET
8
- import urllib .error
9
- import urllib .parse
10
- import urllib .request
11
- import re
12
2
"""QGIS Unit tests for QgsServer GetFeatureInfo WMS.
13
3
14
4
From build dir, run: ctest -R PyQgsServerWMSGetFeatureInfo -V
32
22
# executions
33
23
os .environ ['QT_HASH_SEED' ] = '1'
34
24
25
+ import re
26
+ import urllib .request
27
+ import urllib .parse
28
+ import urllib .error
29
+
30
+ import xml .etree .ElementTree as ET
31
+ import json
32
+
33
+ from qgis .testing import unittest
34
+ from qgis .PyQt .QtCore import QSize
35
35
36
36
import osgeo .gdal # NOQA
37
37
38
+ from test_qgsserver_wms import TestQgsServerWMSTestBase
39
+ from qgis .core import QgsProject
40
+
38
41
39
42
class TestQgsServerWMSGetFeatureInfo (TestQgsServerWMSTestBase ):
40
43
You can’t perform that action at this time.
0 commit comments