Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #282 from revbingo/lighthouse-956-patch
Browse files Browse the repository at this point in the history
[#956] Set framework id to test if command = 'autotest'
  • Loading branch information
pepite committed Aug 8, 2011
2 parents e5b79a0 + 3034b3b commit d708ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion play
Expand Up @@ -107,7 +107,7 @@ try:
if remaining_args.count('--%%%s' % play_env["id"]) == 1:
remaining_args.remove('--%%%s' % play_env["id"])

if play_command == 'test' or play_command == 'auto-test':
if play_command in ['test', 'auto-test', 'autotest'] :
# If framework-id is not a valid test-id, force it to 'test'
if not isTestFrameworkId( play_env["id"] ):
play_env["id"] = 'test'
Expand Down

0 comments on commit d708ac0

Please sign in to comment.