Skip to content

Commit 243e152

Browse files
committed
Ignore UNSAFE_PYO3_SKIP_VERSION_CHECK in ProcessTestCase.test_empty_env
1 parent fd8e6cc commit 243e152

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

graalpython/lib-python/3/test/test_subprocess.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,8 @@ def is_env_var_to_ignore(n):
832832
n == 'PWD' or n == 'SHLVL' or # Graalpython bash launcher
833833
n.startswith('JAVA_MAIN_CLASS') or # JVM on MacOS
834834
n == 'LD_LIBRARY_PATH' or n == 'DYLD_LIBRARY_PATH' or # Added by graalpy launcher
835-
n == 'LC_CTYPE') # Locale coercion triggered
835+
n == 'LC_CTYPE', # Locale coercion triggered
836+
n == 'UNSAFE_PYO3_SKIP_VERSION_CHECK') # GraalPy change
836837

837838
with subprocess.Popen([sys.executable, "-c",
838839
'import os; print(list(os.environ.keys()))'],

0 commit comments

Comments
 (0)