We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c29c3 commit 81376c4Copy full SHA for 81376c4
1 file changed
test/check-exercises.py
@@ -56,7 +56,7 @@ def assignment_name(test_file):
56
def main():
57
if len(sys.argv) == 2: # test a specific exercise
58
exercise_path = sys.argv[1].strip('/')
59
- test_file = glob.glob('./{}/*_test.py'.format(exercise_path))[0]
+ test_file = glob.glob('../exercises/{}/*_test.py'.format(exercise_path))[0]
60
check_assignment(assignment_name(test_file), test_file,
61
modname_heuristic(test_file))
62
else:
0 commit comments