"""conftest. This file gets picked up when running py.test tests: http://pytest.org/latest/writing_plugins.html#conftest """ import application import pytest @pytest.fixture def client(): """Return flask test client. Returns: flask client: flask test client """ return application.app.test_client()