Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[Server 3.0] re-enable server tests
- Loading branch information
|
@@ -2,7 +2,6 @@ PyQgsComposerPicture |
|
|
PyQgsJSONUtils |
|
|
PyQgsLocalServer |
|
|
PyQgsPalLabelingServer |
|
|
PyQgsServer |
|
|
qgis_composermapgridtest |
|
|
qgis_composerutils |
|
|
ProcessingGrass7AlgorithmsImageryTest |
|
|
|
@@ -163,6 +163,7 @@ class TestQgsServerAccessControl(unittest.TestCase): |
|
|
@classmethod |
|
|
def setUpClass(cls): |
|
|
"""Run before all tests""" |
|
|
cls._app = QgsApplication([], False) |
|
|
cls._server = QgsServer() |
|
|
cls._server.handleRequest() |
|
|
cls._server_iface = cls._server.serverInterface() |
|
@@ -173,6 +174,7 @@ def setUpClass(cls): |
|
|
def tearDownClass(cls): |
|
|
"""Run after all tests""" |
|
|
del cls._server |
|
|
cls._app.exitQgis() |
|
|
|
|
|
def setUp(self): |
|
|
self.testdata_path = unitTestDataPath("qgis_server_accesscontrol") |
|
|