Skip to content

Commit

Permalink
Suppress a hypothesis HealthCheck on test_split_datasets that fails i…
Browse files Browse the repository at this point in the history
…n nightly CI.
  • Loading branch information
bdice committed Mar 1, 2024
1 parent a356ec6 commit 8279c90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/cuml/tests/test_strategies.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
# Copyright (c) 2022-2024, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -98,7 +98,9 @@ def test_standard_datasets(dataset):


@given(split_datasets(standard_datasets()))
@settings(suppress_health_check=[HealthCheck.too_slow])
@settings(
suppress_health_check=[HealthCheck.too_slow, HealthCheck.data_too_large]
)
def test_split_datasets(split_dataset):
X_train, X_test, y_train, y_test = split_dataset

Expand Down

0 comments on commit 8279c90

Please sign in to comment.