diff --git a/noxfile.py b/noxfile.py index 74538f49f0..32467b0dde 100644 --- a/noxfile.py +++ b/noxfile.py @@ -119,10 +119,10 @@ # Sessions are executed in the order so putting the smaller sessions # ahead to fail fast at presubmit running. nox.options.sessions = [ - "unit", "system-3.9", "system-3.12", "cover", + # TODO(b/401609005): remove "cleanup", ] @@ -458,21 +458,11 @@ def cover(session): "coverage", "report", "--include=bigframes/*", + # Only unit tested + "--omit=bigframes/core/compile/polars/*", "--show-missing", - "--fail-under=85", + "--fail-under=83", ) - - # Make sure there is no dead code in our test directories. - session.run( - "coverage", - "report", - "--show-missing", - "--include=tests/unit/*", - "--include=tests/system/small/*", - # TODO(b/353775058) resume coverage to 100 when the issue is fixed. - "--fail-under=99", - ) - session.run("coverage", "erase")