File: python3-sasview

package info (click to toggle)
sasview 6.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 152,244 kB
  • sloc: python: 58,639; cpp: 6,412; javascript: 173; makefile: 167; sh: 121; xml: 40
file content (14 lines) | stat: -rwxr-xr-x 281 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 pyproject.toml "$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