diff --git a/aiopenapi3/version.py b/aiopenapi3/version.py index 906d362f..c4b6bd44 100644 --- a/aiopenapi3/version.py +++ b/aiopenapi3/version.py @@ -1 +1 @@ -__version__ = "0.6.0" +__version__ = "0.7.0a1" diff --git a/tests/error_test.py b/tests/error_test.py index 0f493bed..ef8cba5b 100644 --- a/tests/error_test.py +++ b/tests/error_test.py @@ -20,7 +20,7 @@ def test_response_error(httpx_mock, with_paths_response_error): str(e.value) httpx_mock.add_response(headers={"Content-Type": "application/json"}, status_code=201, json="ok") - with pytest.raises(HTTPStatusError): + with pytest.raises(HTTPStatusError) as e: api._.test() str(e.value)