Move the testing pack nodes out of a nested directory

This commit is contained in:
doctorpangloss 2024-07-22 08:49:08 -07:00
parent 5a644488d6
commit 135e4008b7
9 changed files with 24 additions and 25 deletions

View File

@ -106,7 +106,7 @@ class TestExecution:
]) ])
async def client(self, request) -> Client: async def client(self, request) -> Client:
from comfy.cmd.execution import nodes from comfy.cmd.execution import nodes
from .testing_nodes.testing_pack import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS from .testing_pack import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
nodes.update(ExportedNodes(NODE_CLASS_MAPPINGS=NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS=NODE_DISPLAY_NAME_MAPPINGS)) nodes.update(ExportedNodes(NODE_CLASS_MAPPINGS=NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS=NODE_DISPLAY_NAME_MAPPINGS))
lru_size, = request.param lru_size, = request.param

View File

@ -1 +0,0 @@