@@ -14,6 +14,10 @@
slightly different behaviour on various platforms.
(Jelmer Vernooij)
+ * ``setup.py test`` (available when setuptools is installed) now
+ runs all tests, not just the basic unit tests.
+ (Jelmer Vernooij)
+
BUG FIXES
* Commit._deserialize now actually deserializes the current state rather than
@@ -52,7 +52,7 @@ if sys.platform == 'darwin' and os.path.exists('/usr/bin/xcodebuild'):
setup_kwargs = {}
if has_setuptools:
- setup_kwargs['test_suite'] = 'dulwich.tests'
+ setup_kwargs['test_suite'] = 'dulwich.tests.test_suite'
setup(name='dulwich',
description='Python Git Library',