Skip to content

Commit 8b6414d

Browse files
committed
Remove test markers
1 parent 6981307 commit 8b6414d

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ build/
88
dist/
99
examples/*.png
1010
pip-wheel-metadata/
11-
.idea
1211

1312
# coverage
1413
.coverage

tests/tests_asyncio/test_remote.py

-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def inject_fixtures(self, caplog):
6161
caplog.set_level(logging.DEBUG)
6262
self._caplog = caplog
6363

64-
@pytest.mark.asyncio
6564
async def test_devtools(self):
6665
async with remote_chromium() as devtools_url:
6766
settings_dict = {

tests/tests_asyncio/test_settings.py

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
from unittest import IsolatedAsyncioTestCase
22

3-
import pytest
4-
53
from scrapy.settings import Settings
64

75
from scrapy_playwright.handler import Config
@@ -33,7 +31,6 @@ async def test_max_pages_per_context(self):
3331
config = Config.from_settings(Settings({"CONCURRENT_REQUESTS": 9876}))
3432
assert config.max_pages_per_context == 9876
3533

36-
@pytest.mark.asyncio
3734
async def test_max_contexts(self):
3835
async with make_handler({"PLAYWRIGHT_MAX_CONTEXTS": None}) as handler:
3936
assert not hasattr(handler, "context_semaphore")

0 commit comments

Comments
 (0)