Skip to content

Commit

Permalink
Let's try again and see if we can get the bravado integration test to…
Browse files Browse the repository at this point in the history
… pass on Windows on Azure Pipelines
  • Loading branch information
sjaensch committed May 13, 2019
1 parent 1310eee commit 6e3bb26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/integration/bravado_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_bytes_header(self, swagger_http_server):
'method': 'GET',
'headers': {'byte-header': b'1'},
'url': '{server_address}/1'.format(server_address=swagger_http_server),
'params': {},
}).result(timeout=1)
'params': {'timeout': 5, 'connect_timeout': 1},
}).result(timeout=5)

assert response.text == self.encode_expected_response(ROUTE_1_RESPONSE)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ commands =
coverage report --omit=.tox/*,tests/* -m
# abort if coverage is below 100% for test files; there might be tests that don't get executed
# we're omitting bravado_integration_test.py since there are issues with Azure Pipelines on Windows
coverage report --fail-under=100 --include tests/* --omit tests/integration/bravado_integration_test.py -m
coverage report --fail-under=100 --include tests/* -m
mypy bravado_asyncio testing

[flake8]
Expand Down

0 comments on commit 6e3bb26

Please sign in to comment.