Skip to content
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
8 changes: 0 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ jobs:
- name: Show dependencies
run: python -m pip list

- name: Test with pytest
run: |
python -m pytest tests -p no:warnings

- name: Test with pytest
run: |
python -m pytest src/hyperactive -p no:warnings
Expand Down Expand Up @@ -121,10 +117,6 @@ jobs:
- name: Show dependencies
run: python -m pip list

- name: Test with pytest
run: |
python -m pytest tests --cov=hyperactive --cov-report=term-missing --cov-report=xml -p no:warnings

- name: Test with pytest
run: |
python -m pytest src/hyperactive -p no:warnings
Expand Down
7 changes: 1 addition & 6 deletions src/hyperactive/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,4 @@
__version__ = importlib.metadata.version("hyperactive")
__license__ = "MIT"


from .hyperactive import Hyperactive

__all__ = [
"Hyperactive",
]
__all__ = []
49 changes: 0 additions & 49 deletions src/hyperactive/distribution.py

This file was deleted.

285 changes: 0 additions & 285 deletions src/hyperactive/hyperactive.py

This file was deleted.

3 changes: 1 addition & 2 deletions src/hyperactive/integrations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
copyright: hyperactive developers, MIT License (see LICENSE file)
"""

from hyperactive.integrations.sklearn import HyperactiveSearchCV, OptCV
from hyperactive.integrations.sklearn import OptCV

__all__ = [
"HyperactiveSearchCV",
"OptCV",
]
2 changes: 0 additions & 2 deletions src/hyperactive/integrations/sklearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
copyright: hyperactive developers, MIT License (see LICENSE file)
"""

from .hyperactive_search_cv import HyperactiveSearchCV
from .opt_cv import OptCV

__all__ = [
"HyperactiveSearchCV",
"OptCV",
]
Loading