mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-05 13:35:23 +02:00
style(backend): 🎨 add isort to lint and CI/CD
This commit is contained in:
parent
2c80980453
commit
7c936c85ae
103 changed files with 203 additions and 93 deletions
|
@ -3,6 +3,7 @@ import json
|
|||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
from slugify import slugify
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
from tests.utils.recipe_data import RecipeSiteTestCase, get_recipe_test_cases
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
from fastapi.testclient import TestClient
|
||||
from pytest import fixture
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from tests.app_routes import AppRoutes
|
||||
from tests.utils.recipe_data import RecipeSiteTestCase
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ from pathlib import Path
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from mealie.core.config import app_dirs
|
||||
from tests.app_routes import AppRoutes
|
||||
from tests.test_config import TEST_CHOWDOWN_DIR, TEST_NEXTCLOUD_DIR
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from mealie.schema.admin import SiteSettings
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@ import json
|
|||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from mealie.schema.user import SignUpToken
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
|
|
@ -2,9 +2,10 @@ import json
|
|||
from pathlib import Path
|
||||
|
||||
from fastapi.testclient import TestClient
|
||||
from pytest import fixture
|
||||
|
||||
from mealie.core.config import app_dirs
|
||||
from mealie.schema.user import UserOut
|
||||
from pytest import fixture
|
||||
from tests.app_routes import AppRoutes
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue