-
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.
[IBCDPE-947] GX Validation Record Keeping (#135)
* adds reporter class * updates CI command * adds dataset report to process_dataset * Testing out changes to return from log time wrapper * uncomment config chunk * change platform module name * remove dev_config * cleans up reporter * cleans up gx * conditional update_table * updates process * updates for gx_table config * adds gx_table to config files * autoflake * adds test_reporter * updates test_gx * updates gx docstrings * fix imports * redo test process * removes warnings * adds missing typhint * splits line * change to constants.py --------- Co-authored-by: BryanFauble <[email protected]>
- Loading branch information
1 parent
d1ed49f
commit 4d3da56
Showing
15 changed files
with
1,971 additions
and
1,357 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -136,3 +136,6 @@ staging/* | |
|
||
#test staging location | ||
test_staging_dir/ | ||
|
||
# dev config file | ||
dev_config.yaml |
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
Large diffs are not rendered by default.
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
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,7 @@ | ||
from enum import Enum | ||
|
||
|
||
class Platform(Enum): | ||
LOCAL = "LOCAL" | ||
GITHUB = "GITHUB" | ||
NEXTFLOW = "NEXTFLOW" |
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
Oops, something went wrong.