-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move stuff around Signed-off-by: zethson <[email protected]> * Move back Signed-off-by: zethson <[email protected]> * Fix checkout version Signed-off-by: zethson <[email protected]> * Remove unused imports Signed-off-by: zethson <[email protected]> * Fix docs Signed-off-by: zethson <[email protected]> * Fix docs Signed-off-by: zethson <[email protected]> * promote info to warning where more meaningful * exclude slow tests by default, keep them in ci * they're also omitted in ci --------- Signed-off-by: zethson <[email protected]> Co-authored-by: eroell <[email protected]>
- Loading branch information
Showing
17 changed files
with
20 additions
and
218 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
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,4 @@ | ||
[pytest] | ||
markers = | ||
slow: marks tests as slow (deselect with '-m "not slow"') | ||
addopts = -m "not slow" |
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 |
---|---|---|
@@ -1,12 +1,8 @@ | ||
from importlib.metadata import version | ||
|
||
from . import dt, io, pl, pp, tl | ||
from . import dt, io, pl | ||
from .core import EHRData | ||
|
||
__all__ = ["EHRData", "dt", "io", "pl", "pp", "tl"] | ||
__all__ = ["EHRData", "dt", "io", "pl"] | ||
|
||
__version__ = version("ehrdata") | ||
|
||
from .logging_config import configure_logging | ||
|
||
configure_logging() |
File renamed without changes.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
from importlib.util import find_spec | ||
|
||
__all__ = ["BasicClass", "basic_plot", "vitessce"] | ||
|
||
from .basic import BasicClass, basic_plot | ||
__all__ = ["vitessce"] | ||
|
||
if find_spec("vitessce"): | ||
from . import vitessce |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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