Skip to content

Commit

Permalink
tests: allow failure for hdfs tests (iterative#4600)
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop authored Sep 22, 2020
1 parent b31bd1c commit 38dd1c9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion tests/func/test_gc.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,12 @@ def test_gc_not_collect_pipeline_tracked_files(tmp_dir, dvc, run_copy):
pytest.lazy_fixture("local_cloud"),
pytest.lazy_fixture("s3"),
pytest.lazy_fixture("gs"),
pytest.lazy_fixture("hdfs"),
pytest.param(
pytest.lazy_fixture("hdfs"),
marks=pytest.mark.xfail(
reason="https://github.com/iterative/dvc/issues/4418"
),
),
pytest.param(
pytest.lazy_fixture("ssh"),
marks=pytest.mark.skipif(
Expand Down
5 changes: 4 additions & 1 deletion tests/func/test_import_url.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,13 @@ def test_import_url(tmp_dir, dvc, workspace):
"dc24e1271084ee317ac3c2656fb8812b",
"b6dcab6ccd17ca0a8bf4a215a37d14cc.dir",
),
(
pytest.param(
pytest.lazy_fixture("hdfs"),
"ec0943f83357f702033c98e70b853c8c",
"e6dcd267966dc628d732874f94ef4280.dir",
marks=pytest.mark.xfail(
reason="https://github.com/iterative/dvc/issues/4418"
),
),
pytest.param(
pytest.lazy_fixture("ssh"),
Expand Down

0 comments on commit 38dd1c9

Please sign in to comment.