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 @@ -169,7 +169,7 @@ jobs:
169169 path : ./build/docs/html/
170170 - name : Set cores to get stored in /cores
171171 run : |
172- if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
172+ if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
173173 # TODO (Caleb Aikens) figure out how to get Windows core dumps
174174 sudo mkdir /cores
175175 sudo chmod 777 /cores
@@ -178,15 +178,15 @@ jobs:
178178 fi
179179 - name : Run Python tests (pytest)
180180 run : |
181- if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
181+ if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
182182 # TODO (Caleb Aikens) figure out how to get Windows core dumps
183183 ulimit -c unlimited
184184 fi
185185 poetry run python -m pip install --force-reinstall --verbose ./dist/*
186186 poetry run python -m pytest tests/python
187187 - name : Run JS tests (peter-jr)
188188 run : |
189- if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]];
189+ if [[ "$OSTYPE" == "linux-gnu"* || "$OSTYPE" == "darwin"* ]]; then
190190 # TODO (Caleb Aikens) figure out how to get Windows core dumps
191191 ulimit -c unlimited
192192 fi
You can’t perform that action at this time.
0 commit comments