File: python3-marshmallow-sqlalchemy

package info (click to toggle)
python-marshmallow-sqlalchemy 0.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 304 kB
  • sloc: python: 1,687; makefile: 145; sh: 12
file content (18 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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)

cp -rv ${SRCDIR}/tests ${AUTOPKGTEST_TMP}
cd ${AUTOPKGTEST_TMP}

for py in $(py3versions -i); do
    $py -m pytest -v -s tests
done