Skip to content

Commit 775062c

Browse files
committed
Skip test_wheel on linux-aarch64 for now
1 parent 9076250 commit 775062c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_wheel.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
# SOFTWARE.
3939

4040
import os
41+
import platform
4142
import shlex
4243
import shutil
4344
import subprocess
@@ -50,6 +51,7 @@
5051

5152

5253
class TestWheelBuildAndRun(unittest.TestCase):
54+
@unittest.skipIf(sys.platform == 'linux' and platform.machine() == 'aarch64', "GR-68855")
5355
def test_build_install_and_run(self):
5456
# Build a C library and a wheel that depends on it. Then run it through repair_wheel to vendor the library in and verify that it can be imported
5557
orig_root = Path(__file__).parent.resolve()

0 commit comments

Comments
 (0)