Skip to content

Commit

Permalink
remove parallelization from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
03bennej committed Dec 13, 2023
1 parent 2eae677 commit c37b448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ei.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_ensemble_integration(sampling_strategy, dtype):
n_samples=2,
sampling_strategy=sampling_strategy,
sampling_aggregation="mean",
n_jobs=-1,
n_jobs=1,
metrics=metrics,
random_state=42,
project_name="demo",
Expand Down Expand Up @@ -98,7 +98,7 @@ def test_ensemble_integration(sampling_strategy, dtype):
metric=lambda y_test, y_pred: fmax_score(y_test, y_pred)[0],
ensemble_predictor_keys=['S.LR', 'Mean'],
n_repeats=1,
n_jobs=-1,
n_jobs=1,
metric_greater_is_better=True
)

Expand Down

0 comments on commit c37b448

Please sign in to comment.