Files
openide/python/testData/debug/test_subprocess_isolated.py
Elizaveta Shashkova 65d516de9d PY-45659 Add test for isolated mode
IDEA-CR-69971

GitOrigin-RevId: 9ec5bc07508724522604a4be9c4a848c013c4193
2020-12-31 11:13:02 +00:00

9 lines
228 B
Python

from __future__ import print_function
import os
import subprocess
import sys
ret = subprocess.call([os.path.abspath(sys.executable), "-I", "-m", "test_python_subprocess_another_helper"])
print("Module returned code %d" % ret)