From 05e2c60d73d846f1850a617f50f6226a35b4072a Mon Sep 17 00:00:00 2001 From: Stephan Jaensch Date: Mon, 5 Oct 2020 09:31:35 +0200 Subject: [PATCH] We need to keep unconditionally skipping that one bravado integration test --- tests/integration/bravado_integration_test.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/integration/bravado_integration_test.py b/tests/integration/bravado_integration_test.py index 114d71e..d402aab 100644 --- a/tests/integration/bravado_integration_test.py +++ b/tests/integration/bravado_integration_test.py @@ -34,3 +34,11 @@ def test_bytes_header(self, swagger_http_server): assert response.text == self.encode_expected_response( ROUTE_1_RESPONSE ) # pragma: no cover + + @pytest.mark.skip( + reason="Test started failing; also causing hangs on GH Action on Win/Py37" + ) + def test_request_timeout_errors_are_thrown_as_BravadoTimeoutError( + self, swagger_http_server + ): + pass