Commit b99dca98 by Greg Price

Merge pull request #6131 from edx/gprice/fix-paver-test-js

Fix paver test_js task to work without -p flag
parents e01ffcc2 bc41b65c
......@@ -33,7 +33,7 @@ def test_js(options):
elif mode == 'dev':
suite = getattr(options, 'suite', None)
coverage = False
port = getattr(options, 'port')
port = getattr(options, 'port', None)
else:
sys.stderr.write("Invalid mode. Please choose 'dev' or 'run'.")
return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment