And another edit because I am stupidly stubborn.

This commit is contained in:
BethanyG
2021-08-25 16:24:10 -07:00
committed by BethanyG
parent 5de90db25e
commit 88bf0516ad

View File

@@ -80,6 +80,9 @@ def copy_test_files(exercise: ExerciseInfo, workdir: Path, exercise_config = Non
test_file = exercise.path / test_file_name
test_file_out = workdir / test_file_name
copy_file(test_file, test_file_out, strip_skips=(exercise.slug not in ALLOW_SKIP))
for helper_file_name in helper_files:
helper_file = exercise.path / helper_file_name
copy_file(helper_file, strip_skips=(exercise.slug not in ALLOW_SKIP))
def copy_exercise_files(exercise: ExerciseInfo, workdir: Path):