diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-09-06 11:56:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-06 11:56:44 +0200 |
commit | d7d59a24d12eba3ea87b052eab1e978ebca20428 (patch) | |
tree | 4308d7e50ffc6db8bb3c2e3667309bdeae77e9a9 /lib | |
parent | b093929f91997cdeae3677a80d5885e362951083 (diff) | |
download | spack-d7d59a24d12eba3ea87b052eab1e978ebca20428.tar.gz spack-d7d59a24d12eba3ea87b052eab1e978ebca20428.tar.bz2 spack-d7d59a24d12eba3ea87b052eab1e978ebca20428.tar.xz spack-d7d59a24d12eba3ea87b052eab1e978ebca20428.zip |
Mark a test xfail on Python 2.7 (#32526)
refers #32470
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/concretize.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/spack/spack/test/concretize.py b/lib/spack/spack/test/concretize.py index f9d8cced62..97f01660ef 100644 --- a/lib/spack/spack/test/concretize.py +++ b/lib/spack/spack/test/concretize.py @@ -1769,6 +1769,9 @@ class TestConcretize(object): s.concretized() @pytest.mark.regression("31484") + @pytest.mark.skipif( + sys.version_info[:2] == (2, 7), reason="Fixture fails intermittently with Python 2.7" + ) def test_installed_externals_are_reused(self, mutable_database, repo_with_changing_recipe): """Test that external specs that are in the DB can be reused.""" if spack.config.get("config:concretizer") == "original": |