Skip to content
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

fix(analyses-snapshot-testing): one_func_per_action snapshot failure capture #15644

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(analyses-snapshot-testing): snapshot failure capture
  • Loading branch information
SyntaxColoring authored and github-actions[bot] committed Jul 12, 2024
commit 0aa18d580314b71015154481403f6748cdbc18d8
Original file line number Diff line number Diff line change
Expand Up @@ -3535,7 +3535,7 @@
"errors": [
{
"createdAt": "TIMESTAMP",
"detail": "ValueError [line 16]: Nozzle layout configuration of style SINGLE is currently unsupported.",
"detail": "ValueError [line 16]: Nozzle layout configuration of style SINGLE is unsupported in API Versions lower than 2.20.",
"errorCode": "4000",
"errorInfo": {},
"errorType": "ExceptionInProtocolError",
Expand All @@ -3544,10 +3544,10 @@
"wrappedErrors": [
{
"createdAt": "TIMESTAMP",
"detail": "ValueError: Nozzle layout configuration of style SINGLE is currently unsupported.",
"detail": "ValueError: Nozzle layout configuration of style SINGLE is unsupported in API Versions lower than 2.20.",
"errorCode": "4000",
"errorInfo": {
"args": "('Nozzle layout configuration of style SINGLE is currently unsupported.',)",
"args": "('Nozzle layout configuration of style SINGLE is unsupported in API Versions lower than 2.20.',)",
"class": "ValueError",
"traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line N, in exec_run\n exec(\"run(__context)\", new_globs)\n\n File \"<string>\", line N, in <module>\n\n File \"Flex_S_v2_16_P1000_96_TC_PartialTipPickupSingle.py\", line N, in run\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line N, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line N, in configure_nozzle_layout\n raise ValueError(\n"
},
Expand Down