Skip to content

Instantly share code, notes, and snippets.

@alanfranz
Created March 14, 2011 17:08
Show Gist options
  • Save alanfranz/869469 to your computer and use it in GitHub Desktop.
Save alanfranz/869469 to your computer and use it in GitHub Desktop.
zc.buildout twisted trial test runner
[trialtest]
recipe = zc.recipe.egg:scripts
eggs = Twisted>=<required_version_here>
<your_develop_distribution_here>
entry-points = trial=twisted.scripts.trial:run
initialization = import sys; sys.argv[1:] or sys.argv.insert(1, "<your_distro_test_package>")
[trialtest]
recipe = zc.recipe.egg:scripts
eggs = Twisted>=9.0.0
pydenji
entry-points = trial=twisted.scripts.trial:run
initialization = import sys; sys.argv[1:] or sys.argv.insert(1, "pydenji.test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment