"""Pytest conftest module.""" import pytest @pytest.fixture def payload(): """Input payload.""" return { 'product_id': 234324, 'status': None, 'original_release_date': None, 'publish_status': None, 'main_artist': None, 'release_name': None, 'digital_title_suppl': None, 'product_number': None, 'upc': '1234567890123', 'release_format': None, 'display_config': None, 'media_format': None, 'local_genre': None, 'subgenre': None, 'imprint': None, 'artist_country': None, 'sales_start_date': '2020-11-11', 'preorder_date': None, 'pitch_deadline': None, 'internal_notes': None, 'marketing_blurb': None, 'global_mkt_highlights': None, 'territory_restrictions': None, 'delivery_history': None, 'territory_mkt_highlights': None, 'spotify_artist_uri': None, 'apple_artist_id': None, 'apple_id': 2153131, 'spotify_store_link': 'spotify:item:3452sdfass34', 'deezer_store_link': 'deezer.com/album/34rqfaffsd', 'amz_asin_link': None, 'created': None, }