Skip to content

Commit

Permalink
TPOT tests removed
Browse files Browse the repository at this point in the history
  • Loading branch information
nicl-nno committed Aug 11, 2023
1 parent c44cdef commit 37767f1
Showing 1 changed file with 0 additions and 28 deletions.
28 changes: 0 additions & 28 deletions test/integration/automl/test_automl.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,6 @@
from datetime import timedelta

import pytest

from examples.advanced.automl.h2o_example import h2o_classification_pipeline_evaluation, \
h2o_regression_pipeline_evaluation, h2o_ts_pipeline_evaluation
from fedot.core.repository.operation_types_repository import OperationTypesRepository
from fedot.core.utils import fedot_project_root


@pytest.mark.skip(reason="TPOT dependencies issues")
def test_pipeline_from_automl_example():
from examples.advanced.automl.pipeline_from_automl import run_pipeline_from_automl

file_path_train = fedot_project_root().joinpath('test/data/simple_classification.csv')
file_path_test = file_path_train

auc = run_pipeline_from_automl(file_path_train, file_path_test, max_run_time=timedelta(seconds=1))

assert auc > 0.5


@pytest.mark.skip(reason="TPOT dependencies issues")
def test_tpot_vs_fedot_example():
from examples.advanced.automl.tpot_vs_fedot import run_tpot_vs_fedot_example

file_path_train = fedot_project_root().joinpath('test/data/simple_classification.csv')
file_path_test = file_path_train

auc = run_tpot_vs_fedot_example(file_path_train, file_path_test)
assert auc > 0.5


def test_h2o_vs_fedot_example():
Expand Down

0 comments on commit 37767f1

Please sign in to comment.