Created
March 14, 2011 17:08
-
-
Save alanfranz/869469 to your computer and use it in GitHub Desktop.
zc.buildout twisted trial test runner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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>") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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