Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
add msg
Browse files Browse the repository at this point in the history
  • Loading branch information
petehunt committed Jul 25, 2013
1 parent ced8be3 commit 09e656b
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion huxley/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ def _main(
print msg
print '-' * len(msg)

print
config = ConfigParser.RawConfigParser(
allow_no_value=True
)
config.read([file])
for testname in config.sections():
if names and (testname not in names):
continue
print 'Running test:', testname
test_config = dict(config.items(testname))
url = config.get(testname, 'url')
default_filename = os.path.join(
Expand Down Expand Up @@ -114,6 +114,7 @@ def _main(
autorerecord=not playback_only
)
new_screenshots = new_screenshots and (r != 0)
print

if new_screenshots:
return ExitCodes.NEW_SCREENSHOTS
Expand Down

0 comments on commit 09e656b

Please sign in to comment.