-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat(store): Store balsamic analysis in housekeeper (#551)
* store-like-mip * Test store * store balsamic files in meta-file * remove unused argument * add missing required parameter * move calls to store object * change black pre-commit line length to what we use * Remove Python2 charset declaration. Format code * Remove Python2 charset declaration * Capitalize in log message * add method description * output with click instead of print * remove unused imports * remove unneccesary whitespace * describe methods * use existing case instead of refetching * remove hard coded dummy values * remove unused assignment * add missing argument in call * make mock behave more like real thing * store root_dir in hk_api * fix string * handle directories and multiple tags * Merge with master * clarify the priority mapping * simplify test * remove debug print * move test helpers to a module * fix import of store_helpers * remove redundant test setup code * fix store_helper module path * remove redundant import * fix import order * Add docstring * linitng * linting * skip conversion to path * use full path * rework the path and tag parsing * return actual compressed filename * fix broken test * fix path to generated .hk file * fix path to generated .hk file * fix deliverables file path * merge with master * Protect the store in housekeeper from direct usage * format code * linting * linting * check black with our decided linelength * format code * call fixture what it is * test magic __getattr__ * Update cg/cli/workflow/balsamic/base.py * simplify creation of balsamic command * create the deliverables file path in one way only * simplify balsamic command * restore unsecure call * remove erronous usage of store on API * forward all arguments to wrapped add_commit * fix docstring * Wrap version method in Store * capture log at right level * more tests * fix store name according to real implementation
- Loading branch information
1 parent
dbea3ce
commit 59755ac
Showing
96 changed files
with
2,158 additions
and
1,858 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 |
---|---|---|
|
@@ -3,3 +3,4 @@ repos: | |
rev: 19.3b0 | ||
hooks: | ||
- id: black | ||
args: [--line-length=100] |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
import pkg_resources | ||
|
||
__title__ = 'cg' | ||
__title__ = "cg" | ||
__version__ = pkg_resources.get_distribution(__title__).version |
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,4 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
These are independent interfaces to tools outside the package. | ||
|
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
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,4 +1,3 @@ | ||
# -*- coding: utf-8 -*- | ||
from .api import LimsAPI | ||
from .orderform import parse_orderform | ||
from .limsjson import parse_json |
Oops, something went wrong.