File: pytest

package info (click to toggle)
python-watchdog 2.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 772 kB
  • sloc: python: 5,547; ansic: 609; xml: 155; makefile: 124; sh: 7
file content (10 lines) | stat: -rwxr-xr-x 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#! /bin/sh

set -e

cp -a tests "$AUTOPKGTEST_TMP"
for py in $(py3versions -s) ; do
    cd "$AUTOPKGTEST_TMP"
    echo "Testing with $py:"
    $py -m pytest -k "not test_unmount_watched_directory_filesystem" tests
done