r2838 - in zope.proxy/trunk/debian (4 files)

barry at users.alioth.debian.org barry at users.alioth.debian.org
Mon Jun 30 18:21:58 UTC 2014


    Date: Monday, June 30, 2014 @ 18:21:58
  Author: barry
Revision: 2838

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

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

Modified: zope.proxy/trunk/debian/changelog
===================================================================
--- zope.proxy/trunk/debian/changelog	2014-06-30 16:25:49 UTC (rev 2837)
+++ zope.proxy/trunk/debian/changelog	2014-06-30 18:21:58 UTC (rev 2838)
@@ -1,3 +1,10 @@
+zope.proxy (4.1.4-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:18:47 -0400
+
 zope.proxy (4.1.4-1) unstable; urgency=medium
 
   * Team upload.

Modified: zope.proxy/trunk/debian/tests/all
===================================================================
--- zope.proxy/trunk/debian/tests/all	2014-06-30 16:25:49 UTC (rev 2837)
+++ zope.proxy/trunk/debian/tests/all	2014-06-30 18:21:58 UTC (rev 2838)
@@ -1,2 +1,4 @@
-#!/bin/bash
-. /usr/share/python-zope.testing/test_helper
+#!/usr/bin/python
+
+import zope.proxy
+print zope.proxy

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

Modified: zope.proxy/trunk/debian/tests/control
===================================================================
--- zope.proxy/trunk/debian/tests/control	2014-06-30 16:25:49 UTC (rev 2837)
+++ zope.proxy/trunk/debian/tests/control	2014-06-30 18:21:58 UTC (rev 2838)
@@ -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