diff .github/workflows/ci-test.yml @ 7898:05016e488873

test(ci) Right can't use short circuit as it aborts the build.
author John Rouillard <rouilj@ieee.org>
date Sat, 20 Apr 2024 15:53:55 -0400
parents ed3042ff06a6
children 16da6d6040ae
line wrap: on
line diff
--- a/.github/workflows/ci-test.yml	Sat Apr 20 15:45:19 2024 -0400
+++ b/.github/workflows/ci-test.yml	Sat Apr 20 15:53:55 2024 -0400
@@ -203,7 +203,7 @@
       - name: Install python db libraries
         run: |
           pip install mysqlclient
-          [ "$PYTHON_VERSION" != "3.13" ] && pip install psycopg2
+          if [[ "$PYTHON_VERSION" != "3.13" ]]; then pip install psycopg2; fi
 
       - name: Install auxiliary packages
         run: |

Roundup Issue Tracker: http://roundup-tracker.org/