# HG changeset patch # User cmlenz # Date 1185187500 0 # Node ID 01b5a269d94069ad992a5dec1b7ebf492ad0dbdd # Parent 5497c4f4d0367be1d40c4058238fa6cd7de251d2 Register the `unittest` command in `setup.p` so that Bitten does not need to be installed just to run the command. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -59,5 +59,7 @@ NS + 'xml#transform = bitten.build.xmltools:transform' ] }, - test_suite='bitten.tests.suite', zip_safe=True + test_suite='bitten.tests.suite', + zip_safe=True, + cmdclass = {'unittest': unittest} )