We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8cf2e1 commit 306a62fCopy full SHA for 306a62f
.github/workflows/pip.yml
@@ -106,9 +106,10 @@ jobs:
106
kh-samples core -i train_coclustering -e
107
kh-samples sklearn -i khiops_classifier -e
108
109
- # Test that the line containing "MPI command" also contains
110
- # an executable named "mpiexec"
111
- kh-status | grep "MPI command" | grep -wq "mpiexec"
+ # Test that the line containing "MPI command" does not contain "<empty>"
+ # The MPI command is not always named mpiexec, but can be orterun etc
+ # (as given by khiops_env)
112
+ kh-status | grep "MPI command" | grep -vwq "<empty>"
113
release:
114
if: github.ref_type == 'tag'
115
needs: [build, test]
0 commit comments