File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,15 +129,15 @@ jobs:
129129 pip install --only-binary :all: matplotlib
130130
131131 - name : Start MongoDB
132- if : ${{ (! matrix.runs_on) && matrix.cluster_type != 'slurm' }} # only under linux/ubuntu
132+ if : ${{ (! matrix.runs_on) && ( matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
133133 uses : supercharge/mongodb-github-action@1.12.1 # uses latest mongodb per default
134134
135135 - name : Install pymongo package
136- if : ${{ (! matrix.runs_on) && matrix.cluster_type != 'slurm' }} # only under linux/ubuntu
136+ if : ${{ (! matrix.runs_on) && ( matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
137137 run : pip install pymongo
138138
139139 - name : Try to connect to mongodb
140- if : ${{ (! matrix.runs_on) && matrix.cluster_type != 'slurm' }} # only under linux/ubuntu
140+ if : ${{ (! matrix.runs_on) && ( matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
141141 run : |
142142 python3 <<EOF
143143 from pymongo import MongoClient
You can’t perform that action at this time.
0 commit comments