We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fffc8 commit d36abc4Copy full SHA for d36abc4
tests/conftest.py
@@ -25,12 +25,8 @@ def db():
25
create_database(CONNECTION_STRING, felis_schema=SCHEMA_PATH)
26
assert os.path.exists(DB_NAME)
27
28
- # Load data into an in-memory sqlite database first, for performance
29
- db = Database("sqlite://", reference_tables=REFERENCE_TABLES)
30
- db.load_database(DB_PATH, verbose=False)
31
- db.dump_sqlite(DB_NAME)
32
-
33
- # Connect to the new database
+ # Connect and load to the database
34
db = Database(CONNECTION_STRING, reference_tables=REFERENCE_TABLES)
+ db.load_database(DB_PATH, verbose=False)
35
36
return db
0 commit comments