spack test: factor out common args

This commit is contained in:
Gregory Becker
2020-03-31 16:33:06 -07:00
committed by Tamara Dahlgren
parent 97dc74c727
commit 6f39d8011e

View File

@@ -1,7 +1,7 @@
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
# SPDX-License-Identifier: Apache-2.0 OR MIT)
from __future__ import print_function
import os
@@ -54,9 +54,7 @@ def setup_parser(subparser):
cd_group = subparser.add_mutually_exclusive_group()
arguments.add_common_arguments(cd_group, ['clean', 'dirty'])
subparser.add_argument(
'specs', nargs=argparse.REMAINDER,
help="list of specs to test")
arguments.add_common_arguments(subparser, ['installed_specs'])
def test(parser, args):