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 @@ -132,15 +132,15 @@ jobs:
132132 pip install --only-binary :all: matplotlib
133133
134134 - name : Start MongoDB
135- if : ${{ ( ! matrix.runs_on) && (matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
135+ if : ${{ ! matrix.runs_on }} # only under linux/ubuntu
136136 uses : supercharge/mongodb-github-action@1.12.1 # uses latest mongodb per default
137137
138138 - name : Install pymongo package
139- if : ${{ ( ! matrix.runs_on) && (matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
139+ if : ${{ ! matrix.runs_on }} # only under linux/ubuntu
140140 run : pip install pymongo
141141
142142 - name : Try to connect to mongodb
143- if : ${{ ( ! matrix.runs_on) && (matrix.cluster_type != 'slurm') }} # only under linux/ubuntu
143+ if : ${{ ! matrix.runs_on }} # only under linux/ubuntu
144144 run : |
145145 python3 <<EOF
146146 from pymongo import MongoClient
You can’t perform that action at this time.
0 commit comments