From 588eb28da94c2db33ad181bd034ef22df8abb49d Mon Sep 17 00:00:00 2001 From: Dan Allan Date: Sun, 21 Jan 2024 20:51:09 -0500 Subject: [PATCH] Target correct database for upgrade --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66d68cf76..131c5efb8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: run: | set -vxeuo pipefail tiled catalog upgrade-database sqlite+aiosqlite:///tiled_test_db_sqlite.db - tiled catalog upgrade-database postgresql+asyncpg://postgres:secret@localhost:5432 + tiled catalog upgrade-database postgresql+asyncpg://postgres:secret@localhost:5432/tiled-example-data - name: Test with pytest shell: bash -l {0}