refactor: replace isort, black and flake8 with ruff (#1346)
Some checks are pending
Docs - build & deploy / docs (push) Waiting to run
Run tests / build (ubuntu-latest, 3.10) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.11) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.12) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.8) (push) Waiting to run
Run tests / test_sampleproject (3.13) (push) Waiting to run
Run tests / build (ubuntu-latest, 3.9) (push) Waiting to run
Run tests / build (windows-latest, 3.10) (push) Waiting to run
Run tests / build (windows-latest, 3.11) (push) Waiting to run
Run tests / build (windows-latest, 3.12) (push) Waiting to run
Run tests / build (windows-latest, 3.13) (push) Waiting to run
Run tests / build (windows-latest, 3.8) (push) Waiting to run
Run tests / build (windows-latest, 3.9) (push) Waiting to run
Run tests / test_docs (3.13) (push) Waiting to run

This commit is contained in:
Juro Oravec 2025-09-10 14:06:53 +02:00 committed by GitHub
parent 5279fd372a
commit f100cc1836
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
128 changed files with 3076 additions and 2599 deletions

View file

@ -1,13 +1,15 @@
import re
from typing import List
from typing import TYPE_CHECKING, List
import pytest
from playwright.async_api import Browser, Error, Page
from django_components import types
from django_components.testing import djc_test
from tests.testutils import setup_test_config
from tests.e2e.utils import TEST_SERVER_URL, with_playwright
from tests.testutils import setup_test_config
if TYPE_CHECKING:
from django_components import types
setup_test_config(
components={"autodiscover": False},
@ -33,7 +35,7 @@ async def _create_page_with_dep_manager(browser: Browser) -> Page:
() => {
eval(document.body.textContent);
}
"""
""",
)
# Ensure the body is clear
@ -43,7 +45,7 @@ async def _create_page_with_dep_manager(browser: Browser) -> Page:
document.body.innerHTML = '';
document.head.innerHTML = '';
}
"""
""",
)
return page
@ -52,7 +54,7 @@ async def _create_page_with_dep_manager(browser: Browser) -> Page:
@djc_test(
django_settings={
"STATIC_URL": "static/",
}
},
)
class TestDependencyManager:
@with_playwright
@ -80,7 +82,7 @@ class TestDependencyManager:
@djc_test(
django_settings={
"STATIC_URL": "static/",
}
},
)
class TestLoadScript:
@with_playwright
@ -207,7 +209,7 @@ class TestLoadScript:
@djc_test(
django_settings={
"STATIC_URL": "static/",
}
},
)
class TestCallComponent:
@with_playwright