File tree 1 file changed +3
-13
lines changed 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change 119
119
# Sessions are executed in the order so putting the smaller sessions
120
120
# ahead to fail fast at presubmit running.
121
121
nox .options .sessions = [
122
- "unit" ,
123
122
"system-3.9" ,
124
123
"system-3.12" ,
125
124
"cover" ,
125
+ # TODO(b/401609005): remove
126
126
"cleanup" ,
127
127
]
128
128
@@ -458,21 +458,11 @@ def cover(session):
458
458
"coverage" ,
459
459
"report" ,
460
460
"--include=bigframes/*" ,
461
+ # Only unit tested
462
+ "--exlude=bigframes/core/compile/polars/*" ,
461
463
"--show-missing" ,
462
464
"--fail-under=85" ,
463
465
)
464
-
465
- # Make sure there is no dead code in our test directories.
466
- session .run (
467
- "coverage" ,
468
- "report" ,
469
- "--show-missing" ,
470
- "--include=tests/unit/*" ,
471
- "--include=tests/system/small/*" ,
472
- # TODO(b/353775058) resume coverage to 100 when the issue is fixed.
473
- "--fail-under=99" ,
474
- )
475
-
476
466
session .run ("coverage" , "erase" )
477
467
478
468
You can’t perform that action at this time.
0 commit comments