Skip to content

Commit

Permalink
Test only built challenges when using --all
Browse files Browse the repository at this point in the history
As opposed to trying to run tests for everything in `challenges`, which
may not all be built
  • Loading branch information
krx committed Jul 13, 2017
1 parent 63a5a89 commit 2b2a71d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def main():

if args.all:
debug('Running tests against all challenges\n')
tests = test_challenges(listdir(CHAL_DIR))
tests = test_challenges(listdir(BUILD_DIR))
else:
debug('Running tests against {} challenge(s)\n'.format(len(args.chals)))
tests = test_challenges(args.chals)
Expand Down

0 comments on commit 2b2a71d

Please sign in to comment.