"""conftest. This file gets picked up when running py.test tests: http://pytest.org/latest/writing_plugins.html#conftest """ import pytest from notifications import api @pytest.fixture def fixture_client(): """Fixture for an API client.""" return api.app.test_client()