Differential D6164 Diff 30381 python_modules/dagster-graphql/dagster_graphql_tests/graphql/test_mode_definitions.py
Changeset View
Changeset View
Standalone View
Standalone View
python_modules/dagster-graphql/dagster_graphql_tests/graphql/test_mode_definitions.py
Show All 19 Lines | ... on RunConfigSchema { | ||||
} | } | ||||
} | } | ||||
} | } | ||||
} | } | ||||
allConfigTypes { | allConfigTypes { | ||||
key | key | ||||
} | } | ||||
} | } | ||||
... on PythonError { | |||||
message | |||||
stack | |||||
} | |||||
} | } | ||||
} | } | ||||
""" | """ | ||||
def get_step_output(logs, step_key): | def get_step_output(logs, step_key): | ||||
for log in logs: | for log in logs: | ||||
if log["__typename"] == "ExecutionStepOutputEvent" and log["stepKey"] == step_key: | if log["__typename"] == "ExecutionStepOutputEvent" and log["stepKey"] == step_key: | ||||
▲ Show 20 Lines • Show All 58 Lines • Show Last 20 Lines |