diff options
author | Zack Galbreath <zack.galbreath@kitware.com> | 2018-04-19 15:18:28 -0400 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-05-15 05:43:07 -0700 |
commit | 072f907831a610fa67cdc3e66bde685fa0d79519 (patch) | |
tree | beafbdd3c58b0dc1e7efd14f37a451ec2db07551 | |
parent | e4e8c72fa1f713062f59304764c36f39f761480e (diff) | |
download | spack-072f907831a610fa67cdc3e66bde685fa0d79519.tar.gz spack-072f907831a610fa67cdc3e66bde685fa0d79519.tar.bz2 spack-072f907831a610fa67cdc3e66bde685fa0d79519.tar.xz spack-072f907831a610fa67cdc3e66bde685fa0d79519.zip |
Add CDash as a valid reporting format
-rw-r--r-- | lib/spack/spack/report.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/report.py b/lib/spack/spack/report.py index 132a59ecba..9251efed5f 100644 --- a/lib/spack/spack/report.py +++ b/lib/spack/spack/report.py @@ -36,7 +36,8 @@ import spack.fetch_strategy import spack.package templates = { - 'junit': os.path.join('reports', 'junit.xml') + 'junit': os.path.join('reports', 'junit.xml'), + 'cdash': os.path.join('reports', 'cdash') } #: Allowed report formats |