Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

xfail two tests that don't work with aiohttp3 and mocket anymore #3

Merged
merged 1 commit into from
Feb 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/functional/model_func_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ async def test_error_on_missing_type_in_model(swagger_dict, sample_model, http_c
assert "'name' is a required property" in str(excinfo.value)


@pytest.mark.xfail(reason='Fails with aiohttp 3 due to https://github.com/mindflayer/python-mocket/issues/66')
@pytest.mark.asyncio
async def test_model_in_body_of_request(swagger_dict, sample_model, http_client):
param_spec = {
Expand Down
1 change: 1 addition & 0 deletions tests/functional/request_func_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from tests.functional.conftest import swagger_client


@pytest.mark.xfail(reason='Fails with aiohttp 3 due to https://github.com/mindflayer/python-mocket/issues/66')
@pytest.mark.asyncio
async def test_form_params_in_request(swagger_dict, http_client):
param1_spec = {
Expand Down