mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
updating imports to satisfy ruff
This commit is contained in:
parent
f15aa562c2
commit
5f4b406cfe
@ -22,7 +22,7 @@ from invokeai.app.services.invocation_services import InvocationServices
|
||||
from invokeai.app.services.invoker import Invoker
|
||||
from invokeai.app.services.shared.pagination import OffsetPaginatedResults
|
||||
from invokeai.backend.util.logging import InvokeAILogger
|
||||
from tests.fixtures.event_service import DummyEventService, mock_event_service # noqa: F401,F811
|
||||
from tests.fixtures.event_service import DummyEventService
|
||||
from tests.fixtures.sqlite_database import create_mock_sqlite_database
|
||||
|
||||
|
||||
|
@ -1,2 +1,8 @@
|
||||
# conftest.py is a special pytest file. Fixtures defined in this file will be accessible to all tests in this directory
|
||||
# without needing to explicitly import them. (https://docs.pytest.org/en/6.2.x/fixture.html)
|
||||
|
||||
|
||||
# We import the model_installer and torch_device fixtures here so that they can be used by all tests. Flake8 does not
|
||||
# play well with fixtures (F401 and F811), so this is cleaner than importing in all files that use these fixtures.
|
||||
from invokeai.backend.util.test_utils import torch_device # noqa: F401
|
||||
from tests.fixtures.event_service import mock_event_service # noqa: F401
|
||||
|
Loading…
Reference in New Issue
Block a user