Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: kalyan <[email protected]>
  • Loading branch information
rawwar committed Nov 3, 2023
1 parent a8306fe commit 45d7aeb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def lint(session):
# if errors:
# session.error("\n" + "\n".join(sorted(set(errors))))


@nox.session(reuse_venv=True)
@nox.session(python=["3.8", "3.9", "3.10"])
@nox.parametrize("pandas_version", ["1.5.0"])
def test(session, pandas_version: str):
Expand Down
3 changes: 1 addition & 2 deletions opensearch_py_ml/ml_commons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from opensearch_py_ml.ml_commons.ml_commons_client import MLCommonClient
from opensearch_py_ml.ml_commons.model_execute import ModelExecute
from opensearch_py_ml.ml_commons.model_train import ModelTrain
from opensearch_py_ml.ml_commons.model_uploader import ModelUploader

__all__ = ["MLCommonClient", "ModelExecute", "ModelUploader", "ModelTrain"]
__all__ = ["MLCommonClient", "ModelExecute", "ModelUploader"]
1 change: 0 additions & 1 deletion opensearch_py_ml/ml_commons/ml_commons_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
TIMEOUT,
)
from opensearch_py_ml.ml_commons.model_execute import ModelExecute
from opensearch_py_ml.ml_commons.model_train import ModelTrain
from opensearch_py_ml.ml_commons.model_uploader import ModelUploader


Expand Down

0 comments on commit 45d7aeb

Please sign in to comment.