Skip to content

Commit ff2faed

Browse files
authored
test: disable unavailable BQML remote vertex model tests (#848)
1 parent c9eaff0 commit ff2faed

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

noxfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,8 @@ def cover(session):
429429
"--show-missing",
430430
"--include=tests/unit/*",
431431
"--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",
433434
)
434435

435436
session.run("coverage", "erase")

tests/system/small/ml/test_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ def test_model_detect_anomalies(
312312
)
313313

314314

315+
@pytest.mark.skip("b/353775058 BQML internal error")
315316
def test_remote_model_predict(
316317
bqml_linear_remote_model: core.BqmlModel, new_penguins_df
317318
):

tests/system/small/ml/test_remote.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
# limitations under the License.
1414

1515
import pandas as pd
16+
import pytest
1617

1718
from bigframes.ml import remote
1819

1920

21+
@pytest.mark.skip("b/353775058 BQML internal error")
2022
def test_remote_linear_vertex_model_predict(
2123
linear_remote_vertex_model: remote.VertexAIModel, new_penguins_df
2224
):

0 commit comments

Comments
 (0)