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

Fix: imports from relative to absolute #1370

Merged
merged 1 commit into from
Jan 14, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion test/test_pipeline/components/classification/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sklearn.metrics
import numpy as np

from ...ignored_warnings import ignore_warnings, classifier_warnings
from test.test_pipeline.ignored_warnings import ignore_warnings, classifier_warnings


class BaseClassificationComponentTest(unittest.TestCase):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
get_dataset
import sklearn.metrics

from ...ignored_warnings import ignore_warnings, feature_preprocessing_warnings
from test.test_pipeline.ignored_warnings import ignore_warnings, feature_preprocessing_warnings


class LiblinearComponentTest(PreprocessingTestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/components/regression/test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from autosklearn.pipeline.components.regression import _regressors, RegressorChoice

from ...ignored_warnings import regressor_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import regressor_warnings, ignore_warnings


class BaseRegressionComponentTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/test_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from autosklearn.pipeline.constants import \
DENSE, SPARSE, UNSIGNED_DATA, PREDICTIONS, SIGNED_DATA, INPUT

from .ignored_warnings import classifier_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import classifier_warnings, ignore_warnings


class DummyClassifier(AutoSklearnClassificationAlgorithm):
Expand Down
2 changes: 1 addition & 1 deletion test/test_pipeline/test_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from autosklearn.pipeline.util import get_dataset
from autosklearn.pipeline.constants import SPARSE, DENSE, SIGNED_DATA, UNSIGNED_DATA, PREDICTIONS

from .ignored_warnings import regressor_warnings, ignore_warnings
from test.test_pipeline.ignored_warnings import regressor_warnings, ignore_warnings


class SimpleRegressionPipelineTest(unittest.TestCase):
Expand Down