diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2019-12-30 16:55:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 16:55:05 -0800 |
commit | 98ad6e39b57de643162fe7ff94dad57b047bc8b6 (patch) | |
tree | 47ef66c114fae56dded09efec9c91d90647fa60f | |
parent | cc96758fdc933b1e0801cca4bc8543729f384421 (diff) | |
download | spack-98ad6e39b57de643162fe7ff94dad57b047bc8b6.tar.gz spack-98ad6e39b57de643162fe7ff94dad57b047bc8b6.tar.bz2 spack-98ad6e39b57de643162fe7ff94dad57b047bc8b6.tar.xz spack-98ad6e39b57de643162fe7ff94dad57b047bc8b6.zip |
bugfix: add required fixture for CDash authentication test (#14325)
-rw-r--r-- | lib/spack/spack/test/cmd/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/test/cmd/install.py b/lib/spack/spack/test/cmd/install.py index 05f9eaae98..238fd71a91 100644 --- a/lib/spack/spack/test/cmd/install.py +++ b/lib/spack/spack/test/cmd/install.py @@ -676,7 +676,7 @@ def test_install_help_cdash(capsys): @pytest.mark.disable_clean_stage_check -def test_cdash_auth_token(tmpdir, capfd): +def test_cdash_auth_token(tmpdir, install_mockery, capfd): # capfd interferes with Spack's capturing with capfd.disabled(): os.environ['SPACK_CDASH_AUTH_TOKEN'] = 'asdf' |