File: moduletest

package info (click to toggle)
topplot 0.2.2%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,100 kB
  • sloc: python: 3,420; makefile: 59; sh: 10
file content (15 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -efu

if [ -z "$AUTOPKGTEST_TMP" ]; then
    AUTOPKGTEST_TMP=tmp
    mkdir -p ${AUTOPKGTEST_TMP}
fi

cd ${AUTOPKGTEST_TMP}
export MPLCONFIGDIR=$(pwd)/build

for py in $(py3versions -s); do
     xvfb-run -a $py -c "import topplot; print(topplot)"
done