Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions samples/snippets/quickstart_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ def test_quickstart(
quickstart.run_quickstart(your_project_id)
out, _ = capsys.readouterr()
assert "average_body_mass:" in out

# close session so not to affect other tests
bigframes.pandas.close_session()
Copy link
Copy Markdown
Contributor

@shobsi shobsi May 15, 2025

Choose a reason for hiding this comment

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

If the objective is to reset the partially ordered mode to default ordering, I'm afraid that would not happen here, as the value set stills lingers on, and picked up by the next session created

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

right. reset the option and moved to run_quickstart() where the option is changed.