diff --git a/.gitignore b/.gitignore index 133ca1f2..b44fe4f2 100644 --- a/.gitignore +++ b/.gitignore @@ -8,7 +8,6 @@ build/ dist/ examples/*.png pip-wheel-metadata/ -.idea # coverage .coverage diff --git a/tests/tests_asyncio/test_remote.py b/tests/tests_asyncio/test_remote.py index 3b2d687b..1be40591 100644 --- a/tests/tests_asyncio/test_remote.py +++ b/tests/tests_asyncio/test_remote.py @@ -61,7 +61,6 @@ def inject_fixtures(self, caplog): caplog.set_level(logging.DEBUG) self._caplog = caplog - @pytest.mark.asyncio async def test_devtools(self): async with remote_chromium() as devtools_url: settings_dict = { diff --git a/tests/tests_asyncio/test_settings.py b/tests/tests_asyncio/test_settings.py index ecacd88f..42e7da59 100644 --- a/tests/tests_asyncio/test_settings.py +++ b/tests/tests_asyncio/test_settings.py @@ -1,7 +1,5 @@ from unittest import IsolatedAsyncioTestCase -import pytest - from scrapy.settings import Settings from scrapy_playwright.handler import Config @@ -33,7 +31,6 @@ async def test_max_pages_per_context(self): config = Config.from_settings(Settings({"CONCURRENT_REQUESTS": 9876})) assert config.max_pages_per_context == 9876 - @pytest.mark.asyncio async def test_max_contexts(self): async with make_handler({"PLAYWRIGHT_MAX_CONTEXTS": None}) as handler: assert not hasattr(handler, "context_semaphore")