Skip to content
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
2 changes: 2 additions & 0 deletions tests/test_benchmarks_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import asyncio

import pytest
from pytest_codspeed import BenchmarkFixture

from aiohttp import hdrs, web
Expand Down Expand Up @@ -178,6 +179,7 @@ def _run() -> None:
loop.run_until_complete(run_client_benchmark())


@pytest.mark.usefixtures("parametrize_zlib_backend")
def test_get_request_with_251308_compressed_chunked_payload(
loop: asyncio.AbstractEventLoop,
aiohttp_client: AiohttpClient,
Expand Down
2 changes: 2 additions & 0 deletions tests/test_benchmarks_http_websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import asyncio
from typing import Union

import pytest
from pytest_codspeed import BenchmarkFixture

from aiohttp._websocket.helpers import MSG_SIZE, PACK_LEN3
Expand Down Expand Up @@ -117,6 +118,7 @@ def _run() -> None:
loop.run_until_complete(_send_one_hundred_websocket_text_messages())


@pytest.mark.usefixtures("parametrize_zlib_backend")
def test_send_one_hundred_websocket_compressed_messages(
loop: asyncio.AbstractEventLoop, benchmark: BenchmarkFixture
) -> None:
Expand Down
Loading