File: python3-pbkdf2

package info (click to toggle)
python-pbkdf2 1.3%2B20110613.git2a0fb15~ds0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 116 kB
  • ctags: 51
  • sloc: python: 259; sh: 180; makefile: 24
file content (11 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -eu

WORKDIR=$(mktemp -d)
cp -r test "$WORKDIR/"
cd "$WORKDIR/"

for python in $(py3versions -i); do
   PYTHONWARNINGS=d $python -m unittest discover -s test/ 2>&1
done