qubes-installer-qubes-os/anaconda/tests/nosetests.sh
Marek Marczykowski-Górecki f73b3741f0 Update anaconda to 20.25.16
Apply result of "git diff anaconda-18.37.11-1..anaconda-20.25.16-1" and
resolve conflicts.
2014-04-08 05:50:31 +02:00

15 lines
374 B
Bash

#!/bin/sh
# If $top_srcdir has not been set by automake, import the test environment
if [ -z "$top_srcdir" ]; then
top_srcdir="$(dirname "$0")/.."
. ${top_srcdir}/tests/testenv.sh
fi
# If no tests were selected, select all of them
if [ $# -eq 0 ]; then
set -- "${top_srcdir}"/tests/*_tests
fi
exec nosetests -v --exclude=logpicker -a \!acceptance,\!slow "$@"