We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d4dc56 commit 3f87072Copy full SHA for 3f87072
tests/system/small/test_anywidget.py
@@ -35,16 +35,6 @@ def cleanup_session(session):
35
session.close()
36
except Exception as e:
37
traceback.print_exception(type(e), e, None)
38
- # Try the BigFrames cleanup function as fallback
39
- try:
40
- import bigframes.pandas as bpd
41
-
42
- bpd.clean_up_by_session_id(
43
- session.session_id, location=session._location, project=session._project
44
- )
45
- except Exception as cleanup_error:
46
- print(f"Warning: Fallback cleanup also failed: {cleanup_error}")
47
- traceback.print_exception(type(cleanup_error), cleanup_error, None)
48
49
50
@pytest.fixture(scope="module")
0 commit comments