Skip to content

Commit 3d20d63

Browse files
authored
Update test.yml
1 parent 6a365f2 commit 3d20d63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

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

0 commit comments

Comments
 (0)