diff options
| author | Aymeric Vincent <aymeric.vincent@cea.fr> | 2015-10-14 22:59:23 +0200 |
|---|---|---|
| committer | Aymeric Vincent <aymeric.vincent@cea.fr> | 2015-10-14 22:59:23 +0200 |
| commit | 68cc00a06c483a4dcddb8b55772d5cdad2254af6 (patch) | |
| tree | 957148f371d66412dc297283072f06f85faca547 /test/test_all.py | |
| parent | e78fbcbb68da29d36066d89743024d51a0240650 (diff) | |
| download | miasm-68cc00a06c483a4dcddb8b55772d5cdad2254af6.tar.gz miasm-68cc00a06c483a4dcddb8b55772d5cdad2254af6.zip | |
Orthograph fix in parameter: rename --ommit-tags to --omit-tags.
Diffstat (limited to 'test/test_all.py')
| -rw-r--r-- | test/test_all.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_all.py b/test/test_all.py index 9773022f..54537bdf 100644 --- a/test/test_all.py +++ b/test/test_all.py @@ -402,9 +402,9 @@ if __name__ == "__main__": action="store_true") parser.add_argument("-c", "--coverage", help="Include code coverage", action="store_true") - parser.add_argument("-t", "--ommit-tags", help="Ommit tests based on tags \ + parser.add_argument("-t", "--omit-tags", help="Omit tests based on tags \ (tag1,tag2). Available tags are %s. \ -By default, no tag is ommited." % ", ".join(TAGS.keys()), default="") +By default, no tag is omitted." % ", ".join(TAGS.keys()), default="") parser.add_argument("-n", "--do-not-clean", help="Do not clean tests products", action="store_true") args = parser.parse_args() @@ -414,9 +414,9 @@ By default, no tag is ommited." % ", ".join(TAGS.keys()), default="") if args.mono is True or args.coverage is True: multiproc = False - ## Parse ommit-tags argument + ## Parse omit-tags argument exclude_tags = [] - for tag in args.ommit_tags.split(","): + for tag in args.omit_tags.split(","): if not tag: continue if tag not in TAGS: |