~ubuntu-branches/ubuntu/wily/python-pbkdf2/wily

« back to all changes in this revision

Viewing changes to debian/tests/python3-pbkdf2

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-03-25 12:17:02 UTC
  • Revision ID: package-import@ubuntu.com-20130325121702-792faqfmbqmil3wh
Tags: 1.3+20110613.git2a0fb15~ds0-2
* Add autopkgtest support.
* Fix Vcs-Git field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -eu
 
4
 
 
5
WORKDIR=$(mktemp -d)
 
6
cp -r test "$WORKDIR/"
 
7
cd "$WORKDIR/"
 
8
 
 
9
for python in $(py3versions -i); do
 
10
   PYTHONWARNINGS=d $python -m unittest discover -s test/
 
11
done