Skip to content

Commit 7683bfe

Browse files
committed
test(bigframes): remove dead code in test_pandas.py
1 parent 54d6ca3 commit 7683bfe

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

packages/bigframes/tests/unit/test_pandas.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@ def all_session_methods():
5454
[(method_name,) for method_name in all_session_methods()],
5555
)
5656
def test_method_matches_session(method_name: str):
57-
if sys.version_info < (3, 10):
58-
pytest.skip(
59-
"Need Python 3.10 to reconcile deferred annotations."
60-
) # pragma: no cover
61-
6257
session_method = getattr(bigframes.session.Session, method_name)
6358
session_doc = inspect.getdoc(session_method)
6459
assert session_doc is not None, "docstrings are required"

0 commit comments

Comments
 (0)