Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit f5c9cdd

Browse files
committed
fix: exclude execution_history from pandas test
1 parent 0845048 commit f5c9cdd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/unit/test_pandas.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ def all_session_methods():
3737
session_attributes.remove("close")
3838
# streaming isn't in pandas
3939
session_attributes.remove("read_gbq_table_streaming")
40+
# execution_history is in base namespace, not pandas
41+
session_attributes.remove("execution_history")
4042

4143
for attribute in sorted(session_attributes):
4244
session_method = getattr(bigframes.session.Session, attribute)

0 commit comments

Comments
 (0)