Skip to content

Commit

Permalink
Clean up some help text
Browse files Browse the repository at this point in the history
Test suite: just ran create_test -h with CIME_MODEL=cesm and acme
Test baseline: N/A
Test namelist changes: N/A
Test status: N/A

Fixes: None

User interface changes?: No

Code review: None
  • Loading branch information
billsacks committed Aug 25, 2016
1 parent a3a0a39 commit ac35f0a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions scripts/create_test
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ OR
" against the given compare directory ")

parser.add_argument("-g", "--generate",
help="While testing, generate baselines,"
" to the given generate directory")
help="While testing, generate baselines"
" to the given generate directory; "
"this can also be done after the fact with bless_test_results")

parser.add_argument("--xml-machine",
help="Use this machine key in the lookup in testlist.xml, default is all if any --xml- argument is used")
Expand Down Expand Up @@ -158,7 +159,8 @@ OR
help="While testing, compare baselines")

parser.add_argument("-g", "--generate", action="store_true",
help="While testing, generate baselines")
help="While testing, generate baselines; "
"this can also be done after the fact with bless_test_results")

parser.add_argument("--compiler",
help="Compiler to use to build cime. Default will be the name in"
Expand Down Expand Up @@ -197,9 +199,10 @@ OR
help="A file containing an ascii list of tests to run")

parser.add_argument("-o", "--allow-baseline-overwrite", action="store_true",
help="If the generate baseline option is specified with a baseline directory option "
"existing tests in that directory will not be overwritten unless this flag is provided."
"You can use bless-test-results to bless baselines from a recent run.")
help="If the --generate option is given, then by default "
"an attempt to overwrite an existing baseline directory "
"will raise an error. Specifying this option allows "
"existing baseline directories to be silently overwritten.")

args = parser.parse_args(args[1:])

Expand Down

0 comments on commit ac35f0a

Please sign in to comment.