Skip to content

Commit 52a865c

Browse files
committed
remove timeout
(cherry picked from commit a54536c)
1 parent 06283a4 commit 52a865c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ def test_graal_python_args(self):
178178

179179
# check that the subprocess does not receive the args when we end with \v
180180
env = {"GRAAL_PYTHON_ARGS": """\v-c\vimport os\nprint(os.environ.get("GRAAL_PYTHON_ARGS"))\v"""}
181-
result = subprocess.check_output([sys.executable], env=env, text=True, timeout=10)
181+
result = subprocess.check_output([sys.executable], env=env, text=True)
182182
assert result == 'None\n'

0 commit comments

Comments
 (0)