Browse Source
* 🗃️ Update database setup for tests * ✅ Add pragmas and update db handling for testspull/1231/head
committed by
GitHub
3 changed files with 31 additions and 15 deletions
@ -1,13 +1,16 @@ |
|||||
|
import importlib |
||||
from pathlib import Path |
from pathlib import Path |
||||
|
|
||||
|
|
||||
def test_testing_dbs(): |
def test_testing_dbs(): |
||||
|
test_db = Path("./test.db") |
||||
|
if test_db.is_file(): # pragma: nocover |
||||
|
test_db.unlink() |
||||
# Import while creating the client to create the DB after starting the test session |
# Import while creating the client to create the DB after starting the test session |
||||
from sql_databases.sql_app.tests.test_sql_app import test_create_user |
from sql_databases.sql_app.tests import test_sql_app |
||||
|
|
||||
test_db = Path("./test.db") |
# Ensure import side effects are re-executed |
||||
app_db = Path("./sql_app.db") |
importlib.reload(test_sql_app) |
||||
test_create_user() |
test_sql_app.test_create_user() |
||||
test_db.unlink() |
if test_db.is_file(): # pragma: nocover |
||||
if app_db.is_file(): # pragma: nocover |
test_db.unlink() |
||||
app_db.unlink() |
|
||||
|
Loading…
Reference in new issue