File: magicgui-tests

package info (click to toggle)
magicgui 0.9.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 21,796 kB
  • sloc: python: 11,202; makefile: 11; sh: 9
file content (17 lines) | stat: -rwxr-xr-x 277 bytes parent folder | download
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