from typing import Iterator from owsclient import OwsClient import pytest @pytest.fixture def mock_ows_client() -> Iterator[OwsClient]: """Return an OwsClient.""" ows_client = OwsClient(environment='test', service_name='ows-test') yield ows_client