diff options
author | Peter Scheibel <scheibel1@llnl.gov> | 2022-09-23 00:29:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-23 09:29:48 +0200 |
commit | 0a050785e98b07d4b7b4c791a3420a50a23387ca (patch) | |
tree | 5dd961fa0ed13354236c65fd52726f606b6d007a | |
parent | 8f5b847cb0b294374b44f394b8c4365dc1fc52a0 (diff) | |
download | spack-0a050785e98b07d4b7b4c791a3420a50a23387ca.tar.gz spack-0a050785e98b07d4b7b4c791a3420a50a23387ca.tar.bz2 spack-0a050785e98b07d4b7b4c791a3420a50a23387ca.tar.xz spack-0a050785e98b07d4b7b4c791a3420a50a23387ca.zip |
Skip all tests using problematic fixture on python 2.7 (#32768)
-rw-r--r-- | lib/spack/spack/test/concretize.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/spack/spack/test/concretize.py b/lib/spack/spack/test/concretize.py index d1b2021c39..020e921c25 100644 --- a/lib/spack/spack/test/concretize.py +++ b/lib/spack/spack/test/concretize.py @@ -1188,6 +1188,9 @@ class TestConcretize(object): second_spec.concretize() assert first_spec.dag_hash() != second_spec.dag_hash() + @pytest.mark.skipif( + sys.version_info[:2] == (2, 7), reason="Fixture fails intermittently with Python 2.7" + ) @pytest.mark.regression("20292") @pytest.mark.parametrize( "context", @@ -1510,6 +1513,9 @@ class TestConcretize(object): s = Spec("python target=k10").concretized() assert s.satisfies("target=k10") + @pytest.mark.skipif( + sys.version_info[:2] == (2, 7), reason="Fixture fails intermittently with Python 2.7" + ) @pytest.mark.regression("29201") def test_delete_version_and_reuse(self, mutable_database, repo_with_changing_recipe): """Test that we can reuse installed specs with versions not |