Skip to content

Commit

Permalink
enable sqlite database backend testing in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rabbull committed Dec 10, 2024
1 parent af544e7 commit fbb7ee3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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/

0 comments on commit fbb7ee3

Please sign in to comment.