Skip to content

Commit 2325a50

Browse files
committed
Skip test for ARM64
1 parent 9262b0d commit 2325a50

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/test_bugs.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import traceback
5252
import time
5353
import unittest
54+
import platform
5455
import pickle
5556
import sys
5657

@@ -575,6 +576,9 @@ def tearDown(self):
575576
except:
576577
pass
577578

579+
@unittest.skipIf(
580+
platform.machine() == "arm64", "Test not available for ARM64"
581+
)
578582
@foreach_cnx()
579583
def test_lost_connection(self):
580584
self._setup()
@@ -3894,6 +3898,9 @@ def tearDown(self):
38943898
except:
38953899
pass
38963900

3901+
@unittest.skipIf(
3902+
platform.machine() == "arm64", "Test not available for ARM64"
3903+
)
38973904
@foreach_cnx()
38983905
def test_kill_query(self):
38993906

0 commit comments

Comments
 (0)