Skip to content

Commit 0cd680a

Browse files
authored
Merge pull request #513 from KhiopsML/prepare-release-11-0-0-0
Prepare release 11 0 0 0
2 parents 28377bc + 769babc commit 0cd680a

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/pip.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

tests/test_khiops_integrations.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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+"""

0 commit comments

Comments
 (0)