File: upstreamtests

package info (click to toggle)
statsmodels 0.14.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 49,848 kB
  • sloc: python: 253,316; f90: 612; sh: 560; javascript: 337; asm: 156; makefile: 132; 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