diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/artifactcache/expiry.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/artifactcache/expiry.py b/tests/artifactcache/expiry.py index 83e4b19bd..0913b569f 100644 --- a/tests/artifactcache/expiry.py +++ b/tests/artifactcache/expiry.py @@ -41,7 +41,6 @@ DATA_DIR = os.path.join( # Ensure that the cache successfully removes an old artifact if we do # not have enough space left. @pytest.mark.datafiles(DATA_DIR) -@pytest.mark.xfail() def test_artifact_expires(cli, datafiles): project = str(datafiles) element_path = 'elements' @@ -84,7 +83,6 @@ def test_artifact_expires(cli, datafiles): (399999) ]) @pytest.mark.datafiles(DATA_DIR) -@pytest.mark.xfail() def test_artifact_too_large(cli, datafiles, size): project = str(datafiles) element_path = 'elements' @@ -103,7 +101,6 @@ def test_artifact_too_large(cli, datafiles, size): @pytest.mark.datafiles(DATA_DIR) -@pytest.mark.xfail() def test_expiry_order(cli, datafiles): project = str(datafiles) element_path = 'elements' @@ -161,7 +158,6 @@ def test_expiry_order(cli, datafiles): # in the current build pipeline, because that would be embarassing, # wouldn't it? @pytest.mark.datafiles(DATA_DIR) -@pytest.mark.xfail() def test_keep_dependencies(cli, datafiles): project = str(datafiles) element_path = 'elements' @@ -261,7 +257,6 @@ def test_never_delete_required(cli, datafiles): # artifacts we do not require, and the new build is run with dynamic tracking. # @pytest.mark.datafiles(DATA_DIR) -@pytest.mark.xfail() def test_never_delete_required_track(cli, datafiles): project = str(datafiles) element_path = 'elements' |