File: python3-sasview

package info (click to toggle)
sasview 6.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 215,288 kB
  • sloc: python: 52,263; cpp: 6,412; makefile: 187; javascript: 173; sh: 121; xml: 40
file content (14 lines) | stat: -rwxr-xr-x 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e -u
export PYTHONWARNINGS=d

cp -a test pytest.ini "$AUTOPKGTEST_TMP"

# SasView insists on writing to ~/sasview.log
export HOME="$AUTOPKGTEST_TMP"

cd "$AUTOPKGTEST_TMP"

for py in $(py3versions -s); do
  $py -m pytest -v -s -k "not test_debye_impl" test
done