aboutsummaryrefslogtreecommitdiff
path: root/run-tests.sh
blob: 0eb84de034de54f4da86c425eb5a83d6ffb62a2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

# exit if any subcommand return non-zero status
set -e

# Choose python version
if test "x$1" = x-3; then
	PYTHON=python3
	shift
elif test "x$1" = x-2; then
	PYTHON=python2
	shift
fi
test "x$PYTHON" = x && PYTHON=python

# Find tests
FILTERS=
for arg in "$@"; do
	test "x$FILTERS" != x && FILTERS="$FILTERS or "
	FILTERS="$FILTERS$arg"
done

# Run tests
if [ -z "$FILTERS" ]; then
	$PYTHON setup.py test
else
	$PYTHON setup.py test --addopts="-k \"$FILTERS\""
fi