Skip to content

Commit 0d7759f

Browse files
committed
Actions: Use in process on windows for Python/MATLAB
1 parent a58c6ee commit 0d7759f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/windows_unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
119119
python_exe = sys.executable.replace('\\\\', '/')
120120
121-
content = f'''pyenv(Version='{python_exe}', ExecutionMode='OutOfProcess')
121+
content = f'''pyenv(Version='{python_exe}', ExecutionMode='InProcess')
122122
% Verify Python environment and warm up OutOfProcess worker
123123
pe = pyenv;
124124
disp(pe);
@@ -323,8 +323,8 @@ jobs:
323323
content = f'''getenv('path')
324324
setenv('path', ['{python_dir};', getenv('path')])
325325
getenv('path')
326-
pyenv(Version='{python_exe}', ExecutionMode='OutOfProcess')
327-
% Verify Python environment and warm up OutOfProcess worker
326+
pyenv(Version='{python_exe}', ExecutionMode='InProcess')
327+
% Verify Python environment
328328
pe = pyenv;
329329
disp(pe);
330330
py.importlib.import_module('numpy');

0 commit comments

Comments
 (0)