File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,11 @@ jobs:
127127 if [[ "${{ matrix.container }}" == "debian13" ]]; then
128128 source khiops-debian-venv/bin/activate
129129 fi
130+ if [[ $RUNNER_OS != 'Windows' ]]; then
131+ # Set rights to OpenMPI-specific folder
132+ mkdir -p /github/home/.pmix/components
133+ chown -R $(whoami) /github/home/.pmix/components
134+ fi
130135
131136 # Print khiops installation status
132137 kh-status
Original file line number Diff line number Diff line change @@ -284,6 +284,9 @@ def test_environment_error_on_bogus_khiops_env_script(self):
284284 output_msg = str (context .exception )
285285 self .assertEqual (output_msg , expected_msg )
286286
287+ @unittest .skipIf (
288+ platform .system () != "Linux" , "Skipping test for non-Linux platform"
289+ )
287290 def test_runner_environment_for_openmpi5 (self ):
288291 """Test if KHIOPS_MPI_HOME is actually exported
289292 and HOME is corrected for OpenMPI 5+"""
You can’t perform that action at this time.
0 commit comments