all files migrated; tweaks needed

This commit is contained in:
Lincoln Stein
2023-03-03 00:02:15 -05:00
parent 3f0b0f3250
commit 6a990565ff
496 changed files with 276 additions and 934 deletions

View File

@ -7,11 +7,10 @@ import pathlib
from os import path as osp
from PIL import Image
import invokeai.frontend.dist as frontend
import invokeai.frontend.web.dist as frontend
import invokeai.configs as configs
import invokeai.assets.web as assets_web
class ConfigsTestCase(unittest.TestCase):
"""Test the configuration related imports and objects"""
@ -32,7 +31,7 @@ class ConfigsTestCase(unittest.TestCase):
def test_frontend_path(self):
"""Test that the frontend path is correct"""
FRONTEND_PATH = str(self.get_frontend_path())
assert FRONTEND_PATH.endswith(osp.join("invokeai", "frontend", "dist"))
assert FRONTEND_PATH.endswith(osp.join("invokeai", "frontend", "web", "dist"))
def test_caution_img(self):
"""Verify the caution image"""