From de015f2b18b8545240a1c28ff7b41128cdb3d5d3 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Mon, 16 Dec 2024 00:19:48 +0200 Subject: [PATCH] chore: Restructuring fetchers into cleaner structure --- tests/fetchers/async/__init__.py | 0 tests/fetchers/{ => async}/test_async_httpx.py | 0 tests/fetchers/{ => sync}/test_camoufox.py | 0 tests/fetchers/{ => sync}/test_httpx.py | 0 tests/fetchers/{ => sync}/test_playwright.py | 0 5 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 tests/fetchers/async/__init__.py rename tests/fetchers/{ => async}/test_async_httpx.py (100%) rename tests/fetchers/{ => sync}/test_camoufox.py (100%) rename tests/fetchers/{ => sync}/test_httpx.py (100%) rename tests/fetchers/{ => sync}/test_playwright.py (100%) diff --git a/tests/fetchers/async/__init__.py b/tests/fetchers/async/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/fetchers/test_async_httpx.py b/tests/fetchers/async/test_async_httpx.py similarity index 100% rename from tests/fetchers/test_async_httpx.py rename to tests/fetchers/async/test_async_httpx.py diff --git a/tests/fetchers/test_camoufox.py b/tests/fetchers/sync/test_camoufox.py similarity index 100% rename from tests/fetchers/test_camoufox.py rename to tests/fetchers/sync/test_camoufox.py diff --git a/tests/fetchers/test_httpx.py b/tests/fetchers/sync/test_httpx.py similarity index 100% rename from tests/fetchers/test_httpx.py rename to tests/fetchers/sync/test_httpx.py diff --git a/tests/fetchers/test_playwright.py b/tests/fetchers/sync/test_playwright.py similarity index 100% rename from tests/fetchers/test_playwright.py rename to tests/fetchers/sync/test_playwright.py