diff options
Diffstat (limited to 'tests/test.py')
-rwxr-xr-x | tests/test.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test.py b/tests/test.py index 68e7af25..d9781ecd 100755 --- a/tests/test.py +++ b/tests/test.py @@ -29,7 +29,10 @@ import argparse def main(): - parser = argparse.ArgumentParser() + description = ("Runs boto unit and/or integration tests. " + "Arguments will be passed on to nosetests. " + "See nosetests --help for more information.") + parser = argparse.ArgumentParser(description=description) parser.add_argument('-t', '--service-tests', action="append", default=[], help="Run tests for a given service. This will " "run any test tagged with the specified value, " |