lbry-sdk/run_tests.sh
2017-01-21 16:04:38 -06:00

13 lines
143 B
Bash
Executable file

#!/bin/bash
set -o xtrace
if [ -z "$@" ]; then
TESTS=tests
else
TESTS="$@"
fi
find -iname "*.pyc" -delete
PYTHONPATH=. trial $TESTS