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
5 changes: 4 additions & 1 deletion tests/system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ def resourcemanager_client(

@pytest.fixture(scope="session")
def session() -> bigframes.Session:
return bigframes.Session()
context = bigframes.BigQueryOptions(
location="US",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should already be the default

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that the line below that raises a warning. So this avoids that noise at least, even if it doesn't fix the issue.

)
return bigframes.Session(context=context)


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