qubes-installer-qubes-os/anaconda/tests/nosetests.sh
Marek Marczykowski-Górecki 6bc5671491
anaconda: update to 25.20.9-1
Apply:
  git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1

And resolve conflicts.

QubesOS/qubes-issues#2574
2017-02-14 02:36:20 +01:00

15 lines
378 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-3.5 -v --exclude=logpicker -a \!acceptance,\!slow "$@"