Skip to content

Commit e8d84ee

Browse files
committed
Fixing transient test
1 parent 3ea6b32 commit e8d84ee

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ def test_waitpid_group_child(self):
107107
res = os.waitpid(0, 0)
108108
assert res[1] == 0, res
109109

110-
@unittest.skipIf(sys.platform == 'win32', "Posix-specific")
110+
# @unittest.skipIf(sys.platform == 'win32', "Posix-specific")
111+
# Skipped because of transient: https://jira.oci.oraclecorp.com/browse/GR-65714
112+
@unittest.skip
111113
def test_waitpid_any_child(self):
112114
import os
113115
p = subprocess.Popen([sys.executable, "-c", "import time; time.sleep(0.1); 42"])

scripts/wheelbuilder/darwin/pillow.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved.
22
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
33
#
44
# The Universal Permissive License (UPL), Version 1.0

0 commit comments

Comments
 (0)