Skip to content

Commit 79f8706

Browse files
committed
test:updates system nox session to only run w/ extras in deference to running no_extras nightly
1 parent 331784d commit 79f8706

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

packages/bigframes/noxfile.py

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -366,20 +366,17 @@ def run_system(
366366

367367

368368
@nox.session(python=SYSTEM_TEST_PYTHON_VERSIONS)
369-
@nox.parametrize("test_extra", [True, False])
370-
def system(session: nox.sessions.Session, test_extra):
369+
def system(session: nox.sessions.Session):
371370
"""Run the system test suite."""
372371
if session.python in ("3.7", "3.8", "3.9"):
373372
session.skip("Python 3.9 and below are not supported")
374-
if test_extra:
375-
run_system(
376-
session=session,
377-
prefix_name="system",
378-
test_folder=os.path.join("tests", "system", "small"),
379-
check_cov=True,
380-
)
381-
else:
382-
system_noextras(session)
373+
374+
run_system(
375+
session=session,
376+
prefix_name="system",
377+
test_folder=os.path.join("tests", "system", "small"),
378+
check_cov=True,
379+
)
383380

384381

385382
@nox.session(python=DEFAULT_PYTHON_VERSION)

0 commit comments

Comments
 (0)