File: pytest

package info (click to toggle)
python-watchdog 6.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 808 kB
  • sloc: python: 6,384; ansic: 609; xml: 155; makefile: 124; sh: 8
file content (13 lines) | stat: -rwxr-xr-x 266 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

set -e

# One test opens a lot of files
ulimit -n 2100

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