From 322c3d6b64441b79074e74c57b162568703ed353 Mon Sep 17 00:00:00 2001 From: Karl Liu Date: Tue, 10 Dec 2024 17:03:08 +0100 Subject: [PATCH] enable sqlite database backend testing in github actions --- .github/workflows/test-install.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-install.yml b/.github/workflows/test-install.yml index 7a0076fbbd..291907aacb 100644 --- a/.github/workflows/test-install.yml +++ b/.github/workflows/test-install.yml @@ -163,6 +163,7 @@ jobs: fail-fast: false matrix: python-version: ['3.9', '3.10', '3.11', '3.12'] + database-backend: ['psql', 'sqlite'] services: postgres: @@ -208,4 +209,4 @@ jobs: env: AIIDA_TEST_PROFILE: test_aiida AIIDA_WARN_v3: 1 - run: pytest -n auto --db-backend psql tests -m 'not nightly' tests/ + run: pytest -n auto --db-backend ${{ matrix.database-backend }} tests -m 'not nightly' tests/