Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kapilt/404976 to your computer and use it in GitHub Desktop.
Save kapilt/404976 to your computer and use it in GitHub Desktop.
def collector():
"""
Test collector and runner for setup.py test
"""
from twisted.scripts.trial import run
original_args = list(sys.argv)
sys.argv = ["", "txzookeeper"]
try:
return run()
finally:
sys.argv = original_args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment