Skip to content

Commit 2d131e8

Browse files
committed
feat(tests): add print statements for schema initialization feedback
1 parent 896390c commit 2d131e8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/helpers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,8 @@ def dummy_verified_contract():
246246
def initialize_schema(connection):
247247
with open('./database.sql', 'r') as schema_file:
248248
schema = schema_file.read()
249+
print(schema)
249250

250251
with connection.cursor() as cursor:
251252
cursor.execute(schema)
253+
print("Schema initialized.")

0 commit comments

Comments
 (0)