Skip to content

Commit

Permalink
Remove test markers
Browse files Browse the repository at this point in the history
  • Loading branch information
elacuesta committed Jun 16, 2024
1 parent 6981307 commit 8b6414d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ build/
dist/
examples/*.png
pip-wheel-metadata/
.idea

# coverage
.coverage
Expand Down
1 change: 0 additions & 1 deletion tests/tests_asyncio/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
3 changes: 0 additions & 3 deletions tests/tests_asyncio/test_settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from unittest import IsolatedAsyncioTestCase

import pytest

from scrapy.settings import Settings

from scrapy_playwright.handler import Config
Expand Down Expand Up @@ -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")
Expand Down

0 comments on commit 8b6414d

Please sign in to comment.