Skip to content

Commit

Permalink
wiop
Browse files Browse the repository at this point in the history
  • Loading branch information
pmateusz committed Dec 29, 2024
1 parent 30e95ea commit bd824b2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/client/aiohttp/test_array_query_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
from meatie import api_ref, endpoint
from meatie_aiohttp import Client

pytest.importorskip("pydantic")


@pytest.mark.asyncio()
async def test_handles_array_query_params(http_server: HTTPTestServer) -> None:
Expand Down
3 changes: 3 additions & 0 deletions tests/client/httpx/test_array_query_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
from typing import Annotated, Optional

import httpx
import pytest
from http_test import HTTPTestServer
from http_test.handlers import companies_filter_by_sector
from meatie import api_ref, endpoint
from meatie_httpx import Client

pytest.importorskip("pydantic")


def test_handles_array_query_params(http_server: HTTPTestServer) -> None:
# GIVEN
Expand Down
3 changes: 3 additions & 0 deletions tests/client/requests/test_array_query_params.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from dataclasses import dataclass
from typing import Annotated, Optional

import pytest
import requests
from http_test import HTTPTestServer
from http_test.handlers import companies_filter_by_sector
from meatie import api_ref, endpoint
from meatie_requests import Client

pytest.importorskip("pydantic")


def test_send_array_query_params(http_server: HTTPTestServer) -> None:
# GIVEN
Expand Down

0 comments on commit bd824b2

Please sign in to comment.