parser=argparse.ArgumentParser(description="Run just one test")
parser.add_argument('--nocapture','-s',action='store_true',help="Don't capture stdout (any stdout output will be printed immediately)")
parser.add_argument('--pdb',action='store_true',help="Use pdb for test errors")
parser.add_argument('--pdb-fail',action='store_true',help="Use pdb for test failures")
parser.add_argument('words',metavar="WORDS",nargs='+',help="The description of a test failure, like 'ERROR: test_set_missing_field (courseware.tests.test_model_data.TestStudentModuleStorage)'")