diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-30 10:47:38 -0500 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2016-08-30 15:36:33 -0500 |
commit | ae2a803496772db9ce6f9245d165b44f587e4389 (patch) | |
tree | 35ffd9658d260ca784006cefd5eb50e4dcafb99f | |
parent | 8d1a753a1b21a4ac6ae94cbb97ba2cbf7da8367d (diff) | |
download | spack-ae2a803496772db9ce6f9245d165b44f587e4389.tar.gz spack-ae2a803496772db9ce6f9245d165b44f587e4389.tar.bz2 spack-ae2a803496772db9ce6f9245d165b44f587e4389.tar.xz spack-ae2a803496772db9ce6f9245d165b44f587e4389.zip |
Make subcommands importable, '-' -> '_', fixes #1642
-rwxr-xr-x | bin/spack | 11 | ||||
-rw-r--r-- | lib/spack/spack/cmd/package_list.py (renamed from lib/spack/spack/cmd/package-list.py) | 0 | ||||
-rw-r--r-- | lib/spack/spack/cmd/test_install.py (renamed from lib/spack/spack/cmd/test-install.py) | 0 | ||||
-rw-r--r-- | lib/spack/spack/cmd/url_parse.py (renamed from lib/spack/spack/cmd/url-parse.py) | 0 | ||||
-rw-r--r-- | lib/spack/spack/test/cmd/test_install.py | 6 |
5 files changed, 10 insertions, 7 deletions
@@ -56,8 +56,15 @@ with warnings.catch_warnings(): # Spack, were removed, but shadow system modules that Spack still # imports. If we leave them, Spack will fail in mysterious ways. # TODO: more elegant solution for orphaned pyc files. -orphaned_pyc_files = [os.path.join(SPACK_EXTERNAL_LIBS, n) - for n in ('functools.pyc', 'ordereddict.pyc')] +orphaned_pyc_files = [ + os.path.join(SPACK_EXTERNAL_LIBS, 'functools.pyc'), + os.path.join(SPACK_EXTERNAL_LIBS, 'ordereddict.pyc'), + os.path.join(SPACK_LIB_PATH, 'spack', 'platforms', 'cray_xc.pyc'), + os.path.join(SPACK_LIB_PATH, 'spack', 'cmd', 'package-list.pyc'), + os.path.join(SPACK_LIB_PATH, 'spack', 'cmd', 'test-install.pyc'), + os.path.join(SPACK_LIB_PATH, 'spack', 'cmd', 'url-parse.pyc') +] + for pyc_file in orphaned_pyc_files: if not os.path.exists(pyc_file): continue diff --git a/lib/spack/spack/cmd/package-list.py b/lib/spack/spack/cmd/package_list.py index 42f408af96..42f408af96 100644 --- a/lib/spack/spack/cmd/package-list.py +++ b/lib/spack/spack/cmd/package_list.py diff --git a/lib/spack/spack/cmd/test-install.py b/lib/spack/spack/cmd/test_install.py index 8e7173e9a2..8e7173e9a2 100644 --- a/lib/spack/spack/cmd/test-install.py +++ b/lib/spack/spack/cmd/test_install.py diff --git a/lib/spack/spack/cmd/url-parse.py b/lib/spack/spack/cmd/url_parse.py index b8c7c95040..b8c7c95040 100644 --- a/lib/spack/spack/cmd/url-parse.py +++ b/lib/spack/spack/cmd/url_parse.py diff --git a/lib/spack/spack/test/cmd/test_install.py b/lib/spack/spack/test/cmd/test_install.py index 39287d5d6d..4734fe1267 100644 --- a/lib/spack/spack/test/cmd/test_install.py +++ b/lib/spack/spack/test/cmd/test_install.py @@ -30,6 +30,7 @@ import contextlib 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): |