File: python3-uflash

package info (click to toggle)
python-uflash 1.2.4%2Bdfsg-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 316 kB
  • sloc: python: 773; makefile: 218; sh: 79
file content (17 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -efu

export LC_ALL=C.UTF-8

if [ -z "$AUTOPKGTEST_TMP" ]; then
    AUTOPKGTEST_TMP=tmp
    mkdir -p ${AUTOPKGTEST_TMP}
fi

SRCDIR=$(pwd)
ln -sf ${SRCDIR}/tests ${AUTOPKGTEST_TMP}/tests
cd ${AUTOPKGTEST_TMP}

for py in $(py3versions -i); do
    $py -m pytest --tb=long --verbose
done