forked from LBRYCommunity/lbry-sdk
12 lines
143 B
Bash
Executable file
12 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
|