[Python-apps-commits] r13016 - in packages/dodgy/trunk/debian (changelog tests/dodgy)

danstender-guest at users.alioth.debian.org danstender-guest at users.alioth.debian.org
Tue Mar 22 13:56:08 UTC 2016


    Date: Tuesday, March 22, 2016 @ 13:56:07
  Author: danstender-guest
Revision: 13016

deb/tests/dodgy: put set -e into script body;  use shell loop instead of pipes

Modified:
  packages/dodgy/trunk/debian/changelog
  packages/dodgy/trunk/debian/tests/dodgy

Modified: packages/dodgy/trunk/debian/changelog
===================================================================
--- packages/dodgy/trunk/debian/changelog	2016-03-22 13:49:25 UTC (rev 13015)
+++ packages/dodgy/trunk/debian/changelog	2016-03-22 13:56:07 UTC (rev 13016)
@@ -14,8 +14,11 @@
     + build with dh_python3 in deb/rules.
     + changed deps in deb/tests/control.
     + iterate over py3versions in deb/tests/dodgy.
+  * deb/tests/dodgy:
+    + put set -e into script body.
+    + use shell loop instead of pipes with xargs and env.
 
- -- Daniel Stender <stender at debian.org>  Tue, 22 Mar 2016 14:47:23 +0100
+ -- Daniel Stender <stender at debian.org>  Tue, 22 Mar 2016 14:50:59 +0100
 
 dodgy (0.1.7-1) unstable; urgency=medium
 

Modified: packages/dodgy/trunk/debian/tests/dodgy
===================================================================
--- packages/dodgy/trunk/debian/tests/dodgy	2016-03-22 13:49:25 UTC (rev 13015)
+++ packages/dodgy/trunk/debian/tests/dodgy	2016-03-22 13:56:07 UTC (rev 13016)
@@ -1,2 +1,3 @@
-#!/bin/sh -e
-py3versions -i | tr ' ' '\n' | xargs -I {} env {} -Wd -m nose --verbose 2>&1
+#!/bin/sh
+set -e
+for py in $(py3versions -i); do echo "[*] testing $py:"; $py -Wd -m nose -v 2>&1; done




More information about the Python-apps-commits mailing list