summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-10-30 18:29:44 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-10-30 23:55:00 -0700
commit8f21332fec4c8adb5349ff90e30bb0e4f75e090e (patch)
tree9508f70308b45a5b0f7cdcaab806be72f803b7d1 /bin
parentd155156e32a3e20fdf83c35e73a0109743c6b367 (diff)
downloadspack-8f21332fec4c8adb5349ff90e30bb0e4f75e090e.tar.gz
spack-8f21332fec4c8adb5349ff90e30bb0e4f75e090e.tar.bz2
spack-8f21332fec4c8adb5349ff90e30bb0e4f75e090e.tar.xz
spack-8f21332fec4c8adb5349ff90e30bb0e4f75e090e.zip
Bugfix: '::' only worked on top-level key in config.
- generalized and fixed to work with any key in YAML file - simplified schema writing, as well - add more unit tests for the config system - Rename test/yaml.py to test/spack_yaml.py - Add test/yaml.pyc to ignored pyc files.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spack3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/spack b/bin/spack
index 29991c070d..1f5dec0b3d 100755
--- a/bin/spack
+++ b/bin/spack
@@ -72,7 +72,8 @@ orphaned_pyc_files = [
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')
+ os.path.join(SPACK_LIB_PATH, 'spack', 'cmd', 'url-parse.pyc'),
+ os.path.join(SPACK_LIB_PATH, 'spack', 'test', 'yaml.pyc')
]
for pyc_file in orphaned_pyc_files: