diff options
author | Peter Scheibel <scheibel1@llnl.gov> | 2022-09-07 23:11:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 08:11:20 +0200 |
commit | 021ff1c7daecfd27240700a23f7bdc0d46706551 (patch) | |
tree | cb93403a54e859153c162e70b3edf5fca33589d6 /lib | |
parent | 762ba27036e717aeceeb1b43f3090f0e9a049869 (diff) | |
download | spack-021ff1c7daecfd27240700a23f7bdc0d46706551.tar.gz spack-021ff1c7daecfd27240700a23f7bdc0d46706551.tar.bz2 spack-021ff1c7daecfd27240700a23f7bdc0d46706551.tar.xz spack-021ff1c7daecfd27240700a23f7bdc0d46706551.zip |
Skip test which fails randomly on Python 2.7 (#32569)
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 97f01660ef..d1b2021c39 100644 --- a/lib/spack/spack/test/concretize.py +++ b/lib/spack/spack/test/concretize.py @@ -1528,6 +1528,9 @@ class TestConcretize(object): assert root.dag_hash() == new_root.dag_hash() @pytest.mark.regression("29201") + @pytest.mark.skipif( + sys.version_info[:2] == (2, 7), reason="Fixture fails intermittently with Python 2.7" + ) def test_installed_version_is_selected_only_for_reuse( self, mutable_database, repo_with_changing_recipe ): |