Source: django-sitetree
Version: 1.8.0+dfsg-1
Severity: important
Tags: patch

Hi,

Failing tests in django-sitetree do not currently cause the package to fail
to build.

Patch attached.


Regards,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      [email protected] / chris-lamb.co.uk
       `-
diff --git a/sitetree/runtests.py b/sitetree/runtests.py
index be464ba..0ff3aff 100755
--- a/sitetree/runtests.py
+++ b/sitetree/runtests.py
@@ -1,5 +1,7 @@
 #! /usr/bin/env python
 
+import sys
+
 if __name__ == '__main__':
     from pytest import main as pytest_main
-    pytest_main()
+    sys.exit(pytest_main())
_______________________________________________
Python-modules-team mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/python-modules-team

Reply via email to