File: qwt-tests

package info (click to toggle)
python-qwt 0.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,396 kB
  • sloc: python: 12,138; makefile: 19; sh: 10
file content (17 lines) | stat: -rwxr-xr-x 328 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e -u

# Make the tests use the API specified
export QT_API=$1
export PYTEST_QT_API=$1

export PYTHONWARNINGS=d

cd "$AUTOPKGTEST_TMP"


for py in $(py3versions -s); do
    xvfb-run --auto-servernum --server-num=20 \
        -s "-screen 0 1024x768x24" \
        $py /usr/bin/PythonQwt-tests --mode unattended
done