Documented new behavior in "./test.sh -h"

pull/7/head
Neeraj Kashyap 2021-12-18 07:46:18 -08:00
rodzic 6738b0e821
commit 0d8e00931b
1 zmienionych plików z 7 dodań i 1 usunięć

Wyświetl plik

@ -5,7 +5,13 @@
# pip install -e .[dev]
usage() {
echo "Usage: $0"
echo "Usage: $0" [TEST_SPEC ...]
echo
echo "Arguments:"
echo "----------"
echo "TEST_SPEC"
echo "\tPython unittest specification of which test to run, following: https://docs.python.org/3/library/unittest.html#command-line-interface"
echo "\tFor example: $0 dao.test_moonstream.TestERC20"
}
if [ "$1" = "-h" ] || [ "$1" = "--help" ]