Skip to content

Commit

Permalink
skipping http2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sonic182 committed Sep 22, 2020
1 parent ef2b20a commit 06ea30a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_aiosonic.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
from aiosonic.timeout import Timeouts


skip_http2 = pytest.mark.skip(reason="WIP")


@pytest.mark.asyncio
async def test_simple_get(app, aiohttp_server):
"""Test simple get."""
Expand All @@ -37,6 +40,7 @@ async def test_simple_get(app, aiohttp_server):


@pytest.mark.asyncio
@skip_http2
@pytest.mark.timeout(3)
async def test_get_python(http2_serv):
"""Test simple get."""
Expand All @@ -56,6 +60,7 @@ async def test_get_python(http2_serv):


@pytest.mark.asyncio
@skip_http2
@pytest.mark.timeout(3)
async def test_get_http2(http2_serv):
"""Test simple get to node http2 server."""
Expand All @@ -69,6 +74,7 @@ async def test_get_http2(http2_serv):


@pytest.mark.asyncio
@skip_http2
@pytest.mark.timeout(3)
async def test_method_lower(http2_serv):
"""Test simple get to node http2 server."""
Expand Down Expand Up @@ -661,6 +667,7 @@ class WrongEvent:


@pytest.mark.asyncio
@skip_http2
@pytest.mark.timeout(3)
async def test_http2_wrong_event(mocker):
"""Test json response parsing."""
Expand Down

0 comments on commit 06ea30a

Please sign in to comment.