File: testsuite

package info (click to toggle)
xraydb 4.5.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 50,668 kB
  • sloc: python: 3,317; makefile: 75; sh: 18
file content (16 lines) | stat: -rwxr-xr-x 256 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

set -e

# copy the reiquiered files
for d in python/tests;
do
    cp -av "$d" "${AUTOPKGTEST_TMP}";
done

for py in $(py3versions -s);
do
    echo "[*] testing on $py:";
    cd "${AUTOPKGTEST_TMP}";
    $py -m pytest -v -x -rs tests/ 2>&1;
done