File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33from typing import List , Tuple
44
55import click
6+
7+ sys .path .append (os .path .dirname (__file__ ))
8+ sys .path .append (os .path .join (os .path .dirname (__file__ ), ".." , "libs" ))
9+
10+ from chatmark import Checkbox , Form , Step , TextEditor # noqa: E402
611from find_reference_tests import find_reference_tests
712from i18n import TUILanguage , get_translation
13+ from ide_services import ide_language # noqa: E402
814from model import (
915 FuncToTest ,
1016 TokenBudgetExceededException ,
1420from tools .file_util import retrieve_file_content
1521from write_tests import write_and_print_tests
1622
17- sys .path .append (os .path .join (os .path .dirname (__file__ ), ".." , "libs" ))
18-
19- from chatmark import Checkbox , Form , Step , TextEditor # noqa: E402
20- from ide_services import ide_language # noqa: E402
21-
2223
2324class UnitTestsWorkflow :
2425 def __init__ (
You can’t perform that action at this time.
0 commit comments