We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6596fa6 commit 4fc0809Copy full SHA for 4fc0809
src/lambda/test_results_resolver/index.py
@@ -77,7 +77,7 @@ def handle_cache_update_request(event, context):
77
'costBreakdown': aggregated_metrics.get('cost_breakdown', {})
78
}
79
80
- table = dynamodb.Table(os.environ['TRACKING_TABLE'])
+ table = dynamodb.Table(os.environ['TRACKING_TABLE']) # type: ignore[attr-defined]
81
table.update_item(
82
Key={'PK': f'testrun#{test_run_id}', 'SK': 'metadata'},
83
UpdateExpression='SET testRunResult = :metrics',
0 commit comments