-
Notifications
You must be signed in to change notification settings - Fork 178
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
feat (abr-testing): simulate protocols with csv parameter #16685
Conversation
protocol_end = datetime.strptime( | ||
file_results.get("completedAt", ""), "%Y-%m-%dT%H:%M:%S.%f%z" | ||
) | ||
commands = file_results.get("commands") |
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.
commands
is already defined on line 292 of this function. remove line 345 and use variable commandData
protocol_end = datetime.strptime( | ||
file_results.get("completedAt", ""), "%Y-%m-%dT%H:%M:%S.%f%z" | ||
) | ||
commands = file_results.get("commands") |
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.
remove line 393 since commands
is defined as commandData
on line 370
protocol_end = datetime.strptime( | ||
file_results.get("completedAt", ""), "%Y-%m-%dT%H:%M:%S.%f%z" | ||
) | ||
commands = file_results.get("commands") |
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.
remove line 477 since commands
is defined as commandData
on line 410
@@ -241,6 +241,7 @@ def parse_results_volume( | |||
"Right Pipette Total Aspirates", | |||
"Right Pipette Total Dispenses", | |||
"Gripper Pick Ups", | |||
"Gripper Pick Ups of None", |
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.
this is supposed to be Gripper Pick Ups of opentrons_tough_pcr_auto_sealing_lid
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.
This looks good, but please update the pull request title to something that matches commitizen
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.
great improvements!
Overview
Enabled support for simulating protocols with csv parameters