Make subcommands importable, '-' -> '_', fixes #1642
This commit is contained in:
@@ -30,6 +30,7 @@
|
||||
|
||||
import spack
|
||||
import spack.cmd
|
||||
from spack.cmd import test_install
|
||||
|
||||
FILE_REGISTRY = collections.defaultdict(StringIO.StringIO)
|
||||
|
||||
@@ -51,11 +52,6 @@ def mock_open(filename, mode):
|
||||
handle.close()
|
||||
|
||||
|
||||
# The use of __import__ is necessary to maintain a name with hyphen (which
|
||||
# cannot be an identifier in python)
|
||||
test_install = __import__("spack.cmd.test-install", fromlist=['test_install'])
|
||||
|
||||
|
||||
class MockSpec(object):
|
||||
|
||||
def __init__(self, name, version, hashStr=None):
|
||||
|
Reference in New Issue
Block a user