Skip to content

Commit cdd062a

Browse files
committed
shotgun debugging
1 parent d17d1df commit cdd062a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/core/engine_adapter/integration/test_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2734,10 +2734,12 @@ def _use_warehouse_as_state_connection(gateway_name: str, config: Config):
27342734
sqlmesh_context.migrate()
27352735

27362736

2737-
def test_python_model_column_order(ctx: TestContext, tmp_path: pathlib.Path):
2737+
def test_python_model_column_order(ctx: TestContext, tmp_path_factory: pytest.TempPathFactory):
27382738
if ctx.test_type != "df":
27392739
pytest.skip("python model column order test only needs to be run once per db")
27402740

2741+
tmp_path = tmp_path_factory.mktemp(f"column_order_{ctx.test_id}")
2742+
27412743
test_schema = ctx.add_test_suffix("column_order")
27422744

27432745
(tmp_path / "models").mkdir()

0 commit comments

Comments
 (0)