~ubuntu-branches/ubuntu/wily/pyzmq/wily

« back to all changes in this revision

Viewing changes to debian/tests/python3

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2013-02-24 19:23:15 UTC
  • mfrom: (1.2.1) (9 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: package-import@ubuntu.com-20130224192315-qhmwp3m3ymk8r60d
Tags: 2.2.0.1-1
* New upstream release
* relicense debian packaging to LGPL-3
* update watch file to use github directly
  thanks to Bart Martens for the file
* add autopkgtests
* drop obsolete DM-Upload-Allowed
* bump standard to 3.9.4, no changes required

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -efu
 
3
 
 
4
pys="$(py3versions -r 2>/dev/null)"
 
5
 
 
6
cd "$ADTTMP"
 
7
 
 
8
for py in $pys; do
 
9
    # zmq.tests because gevent is missing in py3
 
10
    echo "=== $py ==="
 
11
    $py /usr/bin/nosetests3 -v zmq.tests 2>&1
 
12
    echo "=== $py-dbg ==="
 
13
    $py-dbg /usr/bin/nosetests3 -v zmq.tests 2>&1
 
14
done