"""Test config for pytest.""" import pytest from tests import fixtures @pytest.fixture def streams_vendor_totals_model(): """Fixture for streams vendor totals pynamodb model.""" return fixtures.STREAMS_VENDOR_TOTALS_MODEL @pytest.fixture def streams_vendor_totals_dict(): """Fixture for streams vendor totals dict.""" return fixtures.STREAMS_VENDOR_TOTALS_DICT @pytest.fixture def streams_track_totals_model(): """Fixture for streams track totals pynamodb model.""" return fixtures.STREAMS_TRACK_TOTALS_MODEL @pytest.fixture def streams_track_totals_dict(): """Fixture for streams track totals dict.""" return fixtures.STREAMS_TRACK_TOTALS_DICT