File tree Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Expand file tree Collapse file tree 3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -429,7 +429,8 @@ def cover(session):
429
429
"--show-missing" ,
430
430
"--include=tests/unit/*" ,
431
431
"--include=tests/system/small/*" ,
432
- "--fail-under=100" ,
432
+ # TODO(b/353775058) resume coverage to 100 when the issue is fixed.
433
+ "--fail-under=99" ,
433
434
)
434
435
435
436
session .run ("coverage" , "erase" )
Original file line number Diff line number Diff line change @@ -312,6 +312,7 @@ def test_model_detect_anomalies(
312
312
)
313
313
314
314
315
+ @pytest .mark .skip ("b/353775058 BQML internal error" )
315
316
def test_remote_model_predict (
316
317
bqml_linear_remote_model : core .BqmlModel , new_penguins_df
317
318
):
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
import pandas as pd
16
+ import pytest
16
17
17
18
from bigframes .ml import remote
18
19
19
20
21
+ @pytest .mark .skip ("b/353775058 BQML internal error" )
20
22
def test_remote_linear_vertex_model_predict (
21
23
linear_remote_vertex_model : remote .VertexAIModel , new_penguins_df
22
24
):
You can’t perform that action at this time.
0 commit comments