File: magicgui-tests

package info (click to toggle)
magicgui 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 21,880 kB
  • sloc: python: 11,573; makefile: 11; sh: 9
file content (17 lines) | stat: -rwxr-xr-x 277 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

cp -r tests "$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"


for py in $(py3versions -s); do
    $py -m pytest -v -k 'not test_pushbutton_icon' tests
done