3838 python-version : ${{ matrix.python-version }}
3939 conda-remove-defaults : true
4040 - name : Install the Khiops Conda package
41+ shell : bash
4142 run : |
4243 # Add the Conda `rc` label for alpha or RC pre-releases
4344 if [[ $(echo ${{ inputs.khiops-python-version }} | grep -E ".*(a|rc)\.[0-9]+") ]]; then
@@ -47,11 +48,13 @@ jobs:
4748 fi
4849 conda install "${RC_LABEL}"khiops==${{ inputs.khiops-python-version }}
4950 - name : Test Khiops Installation Status
50- run : kh-status
51+ shell : bash
52+ run : conda run kh-status
5153 - name : Test Khiops Installation Status (Conda-Based Environments)
54+ shell : bash
5255 run : |
5356 # Set `python` to the current Conda Python executable
54- PYTHON="$(type -P python)"
57+ PYTHON="conda run $(type -P python)"
5558
5659 # Remove $CONDA_PREFIX/bin from PATH
5760 PATH=$(echo $PATH | sed "s#$CONDA_PREFIX/bin:##g")
9699 OMPI_MCA_rmaps_base_oversubscribe : true
97100 # Oversubscribe for Open MPI >= 5
98101 PRTE_MCA_rmaps_default_mapping_policy : :oversubscribe
102+ shell : bash
99103 run : |
100104 # Set `python` to the current Conda Python executable
101105 PYTHON="$(type -P python)"
@@ -132,6 +136,7 @@ jobs:
132136 - name : Install the Test Requirements
133137 run : conda install -y --file test-requirements.txt
134138 - name : Run the Runner Initialization Integration Test
139+ shell : bash
135140 run : |
136141 python -m unittest -v \
137142 tests.test_khiops_integrations.KhiopsRunnerEnvironmentTests.test_runner_environment_initialization
0 commit comments