@@ -567,19 +567,19 @@ def test_precompile_command(project_dir_and_database_file: tuple[Path, Path]):
567
567
project_dir , database_file = project_dir_and_database_file
568
568
execute_command (["dbt-ibis" , "precompile" ])
569
569
570
- assert (
571
- not database_file . exists ()
572
- ), "Database was created although precompile command should not create it."
570
+ assert not database_file . exists (), (
571
+ "Database was created although precompile command should not create it."
572
+ )
573
573
validate_compiled_sql_files (project_dir )
574
574
575
575
576
576
def test_compile_ibis_to_sql (project_dir_and_database_file : tuple [Path , Path ]):
577
577
project_dir , database_file = project_dir_and_database_file
578
578
compile_ibis_to_sql ()
579
579
580
- assert (
581
- not database_file . exists ()
582
- ), "Database was created although precompile command should not create it."
580
+ assert not database_file . exists (), (
581
+ "Database was created although precompile command should not create it."
582
+ )
583
583
validate_compiled_sql_files (project_dir )
584
584
585
585
@@ -652,9 +652,9 @@ def get_tables() -> list[str]:
652
652
)
653
653
654
654
# Check for one Ibis model that the data is what we expect
655
- assert any (
656
- p . stem == "usa_stores" for p in compiled_sql_files
657
- ), "usa_stores is no longer an Ibis model. Adapt test below to use one."
655
+ assert any (p . stem == "usa_stores" for p in compiled_sql_files ), (
656
+ "usa_stores is no longer an Ibis model. Adapt test below to use one."
657
+ )
658
658
db_con = get_db_con ()
659
659
usa_stores_df = db_con .execute (
660
660
"select * from usa_stores order by store_id"
0 commit comments