File: upstreamtests

package info (click to toggle)
statsmodels 0.14.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 49,956 kB
  • sloc: python: 254,365; f90: 612; sh: 560; javascript: 337; asm: 156; makefile: 145; ansic: 32; xml: 9
file content (14 lines) | stat: -rwxr-xr-x 353 bytes parent folder | download | duplicates (4)
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