File: upstream

package info (click to toggle)
python-jsbeautifier 1.15.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: python: 13,140; sh: 14; makefile: 7
file content (13 lines) | stat: -rwxr-xr-x 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -efu

cp -rv jsbeautifier/tests/ "${AUTOPKGTEST_TMP}"
cp -rv jsbeautifier/unpackers/tests/ "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"
touch tests/generated/__init__.py

for py in $(py3versions -s); do
    echo "[*] testing $py:"
    $py -m unittest discover -v
done