Skip to content

Commit 90a245f

Browse files
committed
test(ci) Right can't use short circuit as it aborts the build.
1 parent ae8bbc6 commit 90a245f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ jobs:
203203
- name: Install python db libraries
204204
run: |
205205
pip install mysqlclient
206-
[ "$PYTHON_VERSION" != "3.13" ] && pip install psycopg2
206+
if [[ "$PYTHON_VERSION" != "3.13" ]]; then pip install psycopg2; fi
207207
208208
- name: Install auxiliary packages
209209
run: |

0 commit comments

Comments
 (0)