diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-30 18:29:44 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-30 23:55:00 -0700 |
commit | 8f21332fec4c8adb5349ff90e30bb0e4f75e090e (patch) | |
tree | 9508f70308b45a5b0f7cdcaab806be72f803b7d1 /bin | |
parent | d155156e32a3e20fdf83c35e73a0109743c6b367 (diff) | |
download | spack-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-x | bin/spack | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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: |