File: python3-tests

package info (click to toggle)
python-vttlib 0.11.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 276 kB
  • sloc: python: 1,090; sh: 6; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

set -euo pipefail

cp -a tests $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP

for p in $(py3versions -s); do
    # Cannot run all of of the tests because of non DFSG-compliant test data
    "${p}" -m pytest tests/vttLib_test.py -v
done