r2841 - in zope.interface/trunk/debian (4 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Mon Jun 30 18:34:14 UTC 2014


    Date: Monday, June 30, 2014 @ 18:34:13
  Author: barry
Revision: 2841

Simplify DEP-8 tests so that they just ensure that the package is
importable in both Python 2 and Python 3.

Modified:
  zope.interface/trunk/debian/changelog
  zope.interface/trunk/debian/tests/all
  zope.interface/trunk/debian/tests/all-3
  zope.interface/trunk/debian/tests/control

Modified: zope.interface/trunk/debian/changelog
===================================================================
--- zope.interface/trunk/debian/changelog	2014-06-30 18:27:03 UTC (rev 2840)
+++ zope.interface/trunk/debian/changelog	2014-06-30 18:34:13 UTC (rev 2841)
@@ -1,3 +1,10 @@
+zope.interface (4.1.1-2) UNRELEASED; urgency=medium
+
+  * Simplify DEP-8 tests so that they just ensure that the package is
+    importable in both Python 2 and Python 3.
+
+ -- Barry Warsaw <barry at debian.org>  Mon, 30 Jun 2014 14:30:28 -0400
+
 zope.interface (4.1.1-1) unstable; urgency=medium
 
   * Team upload.

Modified: zope.interface/trunk/debian/tests/all
===================================================================
--- zope.interface/trunk/debian/tests/all	2014-06-30 18:27:03 UTC (rev 2840)
+++ zope.interface/trunk/debian/tests/all	2014-06-30 18:34:13 UTC (rev 2841)
@@ -1,3 +1,4 @@
-#!/bin/bash
-testfilter="-s zope.interface"
-. /usr/share/python-zope.testrunner/test_helper
+#!/usr/bin/python
+
+import zope.interface
+print zope.interface

Modified: zope.interface/trunk/debian/tests/all-3
===================================================================
--- zope.interface/trunk/debian/tests/all-3	2014-06-30 18:27:03 UTC (rev 2840)
+++ zope.interface/trunk/debian/tests/all-3	2014-06-30 18:34:13 UTC (rev 2841)
@@ -1,3 +1,4 @@
-#!/bin/bash
-testfilter="-s zope.interface"
-. /usr/share/python3-zope.testrunner/test_helper_3
+#!/usr/bin/python3
+
+import zope.interface
+print(zope.interface)

Modified: zope.interface/trunk/debian/tests/control
===================================================================
--- zope.interface/trunk/debian/tests/control	2014-06-30 18:27:03 UTC (rev 2840)
+++ zope.interface/trunk/debian/tests/control	2014-06-30 18:34:13 UTC (rev 2841)
@@ -1,5 +1,5 @@
 Tests: all
-Depends: python-all, python-zope.interface, python-zope.testrunner, python-zope.event
+Depends: @
 
 Tests: all-3
-Depends: python3-all, python3-zope.interface, python3-zope.testrunner, python3-zope.event
+Depends: @




More information about the pkg-zope-developers mailing list