We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03c0352 commit 1552734Copy full SHA for 1552734
python2/runner/mountain.py
@@ -18,8 +18,9 @@ def walk_the_path(self, args=None):
18
"Run the koans tests with a custom runner output."
19
20
if args and len(args) >=2:
21
- self.tests = unittest.TestLoader().loadTestsFromName("koans." + args[1])
22
-
23
- self.tests(self.lesson)
24
- self.lesson.learn()
+ args.pop(0)
+ for arg in args:
+ self.tests = unittest.TestLoader().loadTestsFromName("koans." + arg)
+ self.tests(self.lesson)
25
+ self.lesson.learn()
26
return self.lesson
0 commit comments