File: python3-sasview

package info (click to toggle)
sasview 5.0.5-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 114,756 kB
  • sloc: python: 55,953; xml: 11,488; cpp: 6,412; sh: 523; javascript: 467; makefile: 173
file content (14 lines) | stat: -rwxr-xr-x 252 bytes parent folder | download | duplicates (2)
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 test
done