"""Conftest.""" import pytest @pytest.fixture def event(): """Event fixture.""" return { 'detail-type': 'Object Created', 'detail': { 'bucket': { 'name': 'test-bucket', }, 'object': { 'key': 'test_path/test_file.json' } } }