From c428158de6dfc34902e175cf75a7ec4722365f1c Mon Sep 17 00:00:00 2001 From: jasquat Date: Mon, 27 Feb 2023 17:00:34 -0500 Subject: [PATCH] attempt to run migrations from scratch for sqlite in ci since it does not support the migrations w/ burnettk --- .github/workflows/backend_tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/backend_tests.yml b/.github/workflows/backend_tests.yml index 12e503345..cb87dc86d 100644 --- a/.github/workflows/backend_tests.yml +++ b/.github/workflows/backend_tests.yml @@ -119,6 +119,10 @@ jobs: pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry nox --version + - name: Setup sqlite + if: matrix.database == 'sqlite' + run: ./bin/recreate_db clean rmall + - name: Setup Mysql uses: mirromutth/mysql-action@v1.1 with: