Skip to content

Commit

Permalink
Try with a not in-memory db
Browse files Browse the repository at this point in the history
  • Loading branch information
emilymclean committed Mar 24, 2024
1 parent 4008f68 commit 497e97e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ on:
permissions:
contents: read

env:
SQLALCHEMY_DATABASE_URI: "sqlite:///:memory:"

jobs:
build:

Expand All @@ -39,4 +36,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
touch testdb.db
pytest
env:
SQLALCHEMY_DATABASE_URI: "sqlite://testdb.db"

0 comments on commit 497e97e

Please sign in to comment.