File: python3-periodictable

package info (click to toggle)
python-periodictable 1.5.0-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,904 kB
  • sloc: python: 8,405; sh: 99; makefile: 97
file content (12 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e -u
export PYTHONWARNINGS=d
export MPLBACKEND=Agg

cp -a test doc pytest.ini conftest.py "$ADTTMP"

cd "$ADTTMP"

for py in $(py3versions -i); do
  $py -m pytest test doc
done