r2835 - in zope.configuration/trunk/debian (4 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Mon Jun 30 16:22:21 UTC 2014


    Date: Monday, June 30, 2014 @ 16:22:21
  Author: barry
Revision: 2835

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

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

Modified: zope.configuration/trunk/debian/changelog
===================================================================
--- zope.configuration/trunk/debian/changelog	2014-06-30 15:58:14 UTC (rev 2834)
+++ zope.configuration/trunk/debian/changelog	2014-06-30 16:22:21 UTC (rev 2835)
@@ -1,3 +1,10 @@
+zope.configuration (4.0.3-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 12:01:30 -0400
+
 zope.configuration (4.0.3-1) unstable; urgency=medium
 
   * Team upload

Modified: zope.configuration/trunk/debian/tests/all
===================================================================
--- zope.configuration/trunk/debian/tests/all	2014-06-30 15:58:14 UTC (rev 2834)
+++ zope.configuration/trunk/debian/tests/all	2014-06-30 16:22:21 UTC (rev 2835)
@@ -1,2 +1,4 @@
-#!/bin/bash
-. /usr/share/python-zope.testing/test_helper
+#!/usr/bin/python
+
+import zope.configuration
+print zope.configuration

Added: zope.configuration/trunk/debian/tests/all-3
===================================================================
--- zope.configuration/trunk/debian/tests/all-3	                        (rev 0)
+++ zope.configuration/trunk/debian/tests/all-3	2014-06-30 16:22:21 UTC (rev 2835)
@@ -0,0 +1,4 @@
+#!/usr/bin/python3
+
+import zope.configuration
+print(zope.configuration)

Modified: zope.configuration/trunk/debian/tests/control
===================================================================
--- zope.configuration/trunk/debian/tests/control	2014-06-30 15:58:14 UTC (rev 2834)
+++ zope.configuration/trunk/debian/tests/control	2014-06-30 16:22:21 UTC (rev 2835)
@@ -1,3 +1,2 @@
-Tests: all
-Features: no-build-needed
-Depends: @, python-zope.testing
+Tests: all all-3
+Depends: @




More information about the pkg-zope-developers mailing list