File: testsuite

package info (click to toggle)
python-ftputil 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 552 kB
  • sloc: python: 5,879; sh: 10; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
set -efu

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


cp -a test "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"


for py in $pys; do
	echo "=== $py ==="
	$py -m pytest --ignore=test/test_real_ftp.py \
		--ignore=test/test_public_servers.py \
		-k 'not TestAcceptEitherUnicodeOrBytes' 2>&1
done