"""conftest. This file gets picked up when running py.test tests: http://pytest.org/latest/writing_plugins.html#conftest """ import pytest @pytest.fixture def get_headers(): """Get headers.""" return { 'Content-Type': 'application/json', 'Grass-Account-Type': 'vendor', 'Grass-Account-Id': '7123', } @pytest.fixture def fixture_product_id(): """Get test product id.""" return 4804975 @pytest.fixture def fixture_track_id(): """Get test track id.""" return 41113339 @pytest.fixture def fixture_vendor_id(): """Get test vendor id.""" return 7123