File: run-tests

package info (click to toggle)
beanbag-docutils 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 472 kB
  • sloc: python: 2,671; makefile: 202; sh: 8
file content (9 lines) | stat: -rwxr-xr-x 360 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
export CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1
cp -r conftest.py tests "$AUTOPKGTEST_TMP/" && cd "$AUTOPKGTEST_TMP"
for py in $(py3versions -s); do
    $py -Wd -m pytest -v -o cache_dir=$AUTOPKGTEST_TMP/.pytest_cache \
        -k "not test_extlink_with_anchor" \
        -x /usr/lib/python3/dist-packages/beanbag_docutils/sphinx/ext/tests/ 2>&1
done