File: python3-pbkdf2

package info (click to toggle)
python-pbkdf2 1.3%2B20110614.git2a0fb15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 132 kB
  • sloc: python: 267; makefile: 7; sh: 7
file content (11 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (2)
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 -s); do
   PYTHONWARNINGS=d $python -m unittest discover -s test/ 2>&1
done