Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions tests/system/small/ml/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,11 @@ def penguins_bqml_linear_model(session, penguins_linear_model_name) -> core.Bqml

@pytest.fixture(scope="function")
def ephemera_penguins_bqml_linear_model(
penguins_bqml_linear_model,
session: bigframes.Session,
penguins_bqml_linear_model: core.BqmlModel,
) -> core.BqmlModel:
model = penguins_bqml_linear_model
return model.copy(
f"{model._model.project}.{model._model.dataset_id}.{uuid.uuid4().hex}"
)
return model.copy(f"{session._anonymous_dataset}.{uuid.uuid4().hex}")


@pytest.fixture(scope="session")
Expand Down