-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding python build, lint and test #37
Conversation
@@ -223,7 +223,7 @@ def __init__(self, list_of_csv_files=None, config_filename=DEFAULT_CONFIG_FILENA | |||
dataframes = [] | |||
for csv_file in list_of_csv_files : | |||
df = pd.read_csv(csv_file, engine='python', parse_dates=[TIMESTAMP_COL], index_col = TIMESTAMP_COL) | |||
assert FIREFIGHTER_ID_COL in df.columns, "CSV files is missing key columns %s" % (required_cols) | |||
# assert FIREFIGHTER_ID_COL in df.columns, "CSV files is missing key columns %s" % (required_cols) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented out the code for now. Checking with @JSegrave-IBM. Created #38 for @TaeBlack @Aquijada52
websocket-client==0.57.0 | ||
coverage==5.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added coverage that shows what code is being tested with the tests.
@krook this PR adds
I have removed the IBM toolchain. I will add GitHub action to build and deploy to our cluster next. |
No description provided.