Skip to content

Commit f0e927d

Browse files
Merge pull request #18 from antoinedemathelin/master
refactor: Refactoring Adapt
2 parents cae888b + 0749df8 commit f0e927d

File tree

205 files changed

+5419
-4783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+5419
-4783
lines changed

.github/workflows/run-test-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
pip install -e .
3131
- name: Test with pytest
3232
run: |
33-
pytest --cov=adapt
33+
pytest -vv --cov=adapt
3434
- name: Upload codecov
3535
run: |
3636
codecov

adapt/__init__.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,12 @@
66
from adapt import instance_based
77
from adapt import parameter_based
88
from adapt import utils
9+
from adapt import metrics
10+
from adapt import base
911

10-
__all__ = ["feature_based", "instance_based", "parameter_based", "utils"]
12+
__all__ = ["feature_based",
13+
"instance_based",
14+
"parameter_based",
15+
"utils",
16+
"metrics",
17+
"base"]

0 commit comments

Comments
 (0)