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 9076250 commit 775062cCopy full SHA for 775062c
graalpython/com.oracle.graal.python.test/src/tests/test_wheel.py
@@ -38,6 +38,7 @@
38
# SOFTWARE.
39
40
import os
41
+import platform
42
import shlex
43
import shutil
44
import subprocess
@@ -50,6 +51,7 @@
50
51
52
53
class TestWheelBuildAndRun(unittest.TestCase):
54
+ @unittest.skipIf(sys.platform == 'linux' and platform.machine() == 'aarch64', "GR-68855")
55
def test_build_install_and_run(self):
56
# 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
57
orig_root = Path(__file__).parent.resolve()
0 commit comments