Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Int test fix #1355

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test/integration/pipelines/tuning/test_pipeline_tuning.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ def test_early_stop_in_tuning(data_fixture, request):
loss_function=ClassificationMetricsEnum.ROCAUC,
iterations=1000,
early_stopping_rounds=1)
assert time() - start_pipeline_tuner < 1
assert time() - start_pipeline_tuner < 1.1

start_sequential_tuner = time()
_ = run_pipeline_tuner(tuner=SequentialTuner,
Expand All @@ -450,15 +450,15 @@ def test_early_stop_in_tuning(data_fixture, request):
loss_function=ClassificationMetricsEnum.ROCAUC,
iterations=1000,
early_stopping_rounds=1)
assert time() - start_sequential_tuner < 1
assert time() - start_sequential_tuner < 1.1

start_node_tuner = time()
_ = run_node_tuner(train_data=train_data,
pipeline=get_class_pipelines()[0],
loss_function=ClassificationMetricsEnum.ROCAUC,
iterations=1000,
early_stopping_rounds=1)
assert time() - start_node_tuner < 1
assert time() - start_node_tuner < 1.1


def test_search_space_correctness_after_customization():
Expand Down
Loading