File: python3-sphinx-tabs

package info (click to toggle)
sphinx-tabs 3.4.7-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,600 kB
  • sloc: javascript: 1,207; python: 552; xml: 364; makefile: 10; sh: 6
file content (10 lines) | stat: -rwxr-xr-x 233 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

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

cp -a "tests" "${AUTOPKGTEST_TMP}"
cd "${AUTOPKGTEST_TMP}"

for python3 in $python3_versions; do
    $python3 -m pytest -k 'not test_rinohtype_pdf' tests || exit 1
done