placebo works fine for some of my testcases. others I run into trouble during playback e.g.:
response = client.describe_stack_events(StackName=stack_id)
for event in response['StackEvents'][::-1]:
> if event['EventId'] not in seen_events and event['Timestamp'] > now:
E TypeError: can't compare offset-naive and offset-aware datetimes
placebo works fine for some of my testcases. others I run into trouble during playback e.g.:
any idea how to tackle this?