Skip to content

Commit 9262b30

Browse files
committed
[GR-46580] Skip transiently failing test in non-graalpython CI
1 parent f626c72 commit 9262b30

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ def test_flock_s_and_x(self):
9999

100100
@unittest.skipUnless(__graalpython__.posix_module_backend() != 'java', 'No support in Truffle API (GR-28740)')
101101
@unittest.skipUnless(sys.platform != 'darwin', 'MacOSX does not have flock utility')
102+
@unittest.skipUnless("graalpython" in os.environ.get("BITBUCKET_REPO_URL", "graalpython"), "Do not run this in auxillary CI jobs, it can be flaky")
102103
def test_flock_s_and_s(self):
103104
os.close(os.open(TEST_FILENAME_FULL_PATH, os.O_WRONLY | os.O_CREAT))
104105
file = os.open(TEST_FILENAME_FULL_PATH, os.O_WRONLY)

0 commit comments

Comments
 (0)