Skip to content

Commit 6eb3d80

Browse files
committed
Blacklist timing out test
1 parent 89f2ff2 commit 6eb3d80

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
*graalpython.lib-python.3.test.test_cprofile.CProfileTest.test_run_profile_as_module
21
*graalpython.lib-python.3.test.test_cprofile.TestCommandLine.test_sort

mx.graalpython/mx_graalpython.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,12 @@ def update_unittest_tags(args):
300300
linux_tags = _fetch_tags_for_platform(parsed_args, 'linux')
301301
darwin_tags = _fetch_tags_for_platform(parsed_args, 'darwin')
302302

303-
result_tags = linux_tags & darwin_tags
303+
tag_blacklist = {
304+
# This test times out in the gate even though it succeeds locally and in the retagger. Race condition?
305+
('test_cprofile.txt', '*graalpython.lib-python.3.test.test_cprofile.CProfileTest.test_run_profile_as_module'),
306+
}
307+
308+
result_tags = linux_tags & darwin_tags - tag_blacklist
304309
if not parsed_args.untag:
305310
result_tags |= current_tags
306311
_write_tags(result_tags)

0 commit comments

Comments
 (0)