File: upstream

package info (click to toggle)
python-trie 0.4.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: python: 505; makefile: 76; sh: 8
file content (15 lines) | stat: -rwxr-xr-x 325 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -efu

cp -rv tests/ "${AUTOPKGTEST_TMP}"

# These tests is disabled. The necessary files currently only
# resides in libpython*-testsuite.
rm -f "${AUTOPKGTEST_TMP}/tests/test_mapping.py"
cd "${AUTOPKGTEST_TMP}"

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