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 9262b0d commit 2325a50Copy full SHA for 2325a50
tests/test_bugs.py
@@ -51,6 +51,7 @@
51
import traceback
52
import time
53
import unittest
54
+import platform
55
import pickle
56
import sys
57
@@ -575,6 +576,9 @@ def tearDown(self):
575
576
except:
577
pass
578
579
+ @unittest.skipIf(
580
+ platform.machine() == "arm64", "Test not available for ARM64"
581
+ )
582
@foreach_cnx()
583
def test_lost_connection(self):
584
self._setup()
@@ -3894,6 +3898,9 @@ def tearDown(self):
3894
3898
3895
3899
3896
3900
3901
3902
3903
3897
3904
3905
def test_kill_query(self):
3906
0 commit comments