Skip to content

Commit 0957506

Browse files
committed
Fix test_shutdown under coverage
1 parent 131674d commit 0957506

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

graalpython/com.oracle.graal.python.test/src/tests/cpyext/test_shutdown.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2023, 2024, 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
@@ -50,7 +50,7 @@
5050
ENV['PYTHONPATH'] = str(DIR.parent.parent)
5151
ARGS = []
5252
if sys.implementation.name == 'graalpy':
53-
ARGS = ['--python.EnableDebuggingBuiltins']
53+
ARGS = ['--experimental-options', '--python.EnableDebuggingBuiltins']
5454
COMMAND = [sys.executable, *ARGS, str(MODULE_PATH)]
5555

5656

0 commit comments

Comments
 (0)