mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
wip
This commit is contained in:
parent
77d379c021
commit
12491c4983
2 changed files with 14 additions and 7 deletions
|
@ -659,7 +659,14 @@ def run_test_real(
|
|||
# restore the original file, in case we interrupted a prev run
|
||||
# Find the original file in the language-specific practice dir
|
||||
lang_part = str(testdir).split("/exercises/practice/")[0]
|
||||
original_fname = Path(lang_part) / "exercises" / "practice" / testdir.name / file_path
|
||||
original_fname = (
|
||||
original_dname
|
||||
/ Path(lang_part)
|
||||
/ "exercises"
|
||||
/ "practice"
|
||||
/ testdir.name
|
||||
/ file_path
|
||||
)
|
||||
if original_fname.exists():
|
||||
os.makedirs(src.parent, exist_ok=True)
|
||||
shutil.copy(original_fname, src)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue