File: upstreamtests

package info (click to toggle)
statsmodels 0.13.5%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 46,912 kB
  • sloc: python: 240,079; f90: 612; sh: 467; javascript: 337; asm: 156; makefile: 131; ansic: 16; xml: 9
file content (14 lines) | stat: -rwxr-xr-x 353 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e
pys=`py3versions -s 2>/dev/null`
# don't import the source tree
cd "${AUTOPKGTEST_TMP}"
# avoid timeout on slow architectures
pytest_options=--skip-slow
if [ `dpkg --print-architecture` = amd64 ] ; then
    pytest_options= ;
fi

for py in $pys ; do
    $py -m pytest -v $pytest_options /usr/lib/python3/dist-packages/statsmodels ;
done