2019-06-20 19:39:49 +00:00
|
|
|
if [ ! -z "$1" ]; then
|
2020-09-08 17:08:57 +00:00
|
|
|
python3 -m unittest discover tests "test_$1.py"
|
2019-06-20 19:39:49 +00:00
|
|
|
else
|
2020-09-08 17:08:57 +00:00
|
|
|
python3 -m unittest discover tests "test_*.py"
|
2019-06-20 19:39:49 +00:00
|
|
|
fi
|