We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363da25 commit aff6860Copy full SHA for aff6860
test/test_stability.py
@@ -19,6 +19,9 @@
19
# limitations under the License.
20
21
22
+import platform
23
+from unittest import skipIf
24
+
25
from neo4j.v1 import GraphDatabase, basic_auth, ProtocolError
26
27
from test.util import ServerTestCase, restart_server
@@ -29,6 +32,7 @@
29
32
30
33
class ServerRestartTestCase(ServerTestCase):
31
34
35
+ @skipIf(platform.system() == "Windows", "restart testing not supported on Windows")
36
def test_server_shutdown_detection(self):
37
driver = GraphDatabase.driver("bolt://localhost", auth=auth_token)
38
session = driver.session()
0 commit comments