File: python3-blessed

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

python3_versions="$(py3versions -s 2> /dev/null)"

cp -a "tests" "tox.ini" "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"
ln -s /usr/lib/python3/dist-packages/blessed blessed

for python3 in $python3_versions; do
    $python3 -m pytest -v -x -rs -k 'not SequenceWrapper' || exit 1
done