Skip to content

Instantly share code, notes, and snippets.

@gregturn
Created September 17, 2010 15:43
Show Gist options
  • Save gregturn/584420 to your computer and use it in GitHub Desktop.
Save gregturn/584420 to your computer and use it in GitHub Desktop.
if __name__ == "__main__":
args = ["", "recipe13", "--with-regexpicker", \
"--re-pattern=test.*|length", "--verbosity=2"]
print "With verbosity..."
print "===================="
nose.run(argv=args, plugins=[RegexPicker()])
print "Without verbosity..."
print "===================="
args = args[:-1]
nose.run(argv=args, plugins=[RegexPicker()])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment