File: python3-nxs

package info (click to toggle)
python-nxs 4.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 652 kB
  • sloc: python: 2,753; makefile: 153; sh: 10
file content (15 lines) | stat: -rwxr-xr-x 256 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e
set -u

# nxs is not compatible with MXML 3
export SKIP_NXS_TESTS_MXML=true

cp -r nxs/test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP/test/"

export PYTHONWARNINGS=d

for py in $(py3versions -s); do
  $py -m unittest discover --verbose
done