-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature implementation, code refactoring, new test suite and increasi…
…ng code coverage (#27) * uploading refactoring; implementing and separating test cases * general searchrun tests and code formatting * empty commit to test * Adding coverage and improving test suite * Adding new features, test reimplementation and code coverage increase * fix to test, removing unused implementation, and updates to get documenter working * changed Project.toml entries and fixed a test to work with all kind of exceptions * up corrections
- Loading branch information
Showing
19 changed files
with
832 additions
and
521 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
Manifest.toml | ||
/docs/build/ | ||
mlruns | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
listexperiments(mlf::MLFlow) | ||
Returns a list of MLFlow experiments. | ||
Deprecated (last MLFlow version: 1.30.1) in favor of [`searchexperiments`](@ref). | ||
""" | ||
|
||
function listexperiments(mlf::MLFlow) | ||
endpoint = "experiments/list" | ||
mlfget(mlf, endpoint) | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.