Skip to content

Commit

Permalink
Automated autopep8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 15, 2024
1 parent 9475b2a commit 773ff88
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/integration/api/test_main_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,12 +328,14 @@ def test_forecast_with_not_ts_problem():
model.forecast(pre_history=test_data)


@pytest.mark.parametrize('initial_assumption, timeout',
[(Pipeline(PipelineNode('catboost',
nodes_from=[
PipelineNode('resample', nodes_from=[PipelineNode('scaling')])])), 0.001),
(None, 5.0)
])
@pytest.mark.parametrize(
'initial_assumption, timeout', [
(Pipeline(
PipelineNode(
'catboost', nodes_from=[
PipelineNode(
'resample', nodes_from=[
PipelineNode('scaling')])])), 0.001), (None, 5.0)])
def test_api_for_amlb(initial_assumption, timeout):
amlb_data = Path(fedot_project_root(), 'test', 'data', 'amlb')
x_train = np.load(str(Path(amlb_data, 'train_australian_fold7.npy')))
Expand Down

0 comments on commit 773ff88

Please sign in to comment.