File: pytest

package info (click to toggle)
diffoscope 78~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 3,520 kB
  • sloc: python: 7,896; sh: 58; makefile: 54
file content (13 lines) | stat: -rwxr-xr-x 174 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if ! [ -d "$ADTTMP" ]; then
	echo "ADTTMP not set." >&2
	exit 1
fi

export LIBGUESTFS_MEMSIZE=128

cp -r tests $ADTTMP
(cd $ADTTMP; py.test-3 -vv -l -r a)