From 88cc1942e6c9a4e30be6d11b79d47cc129fd57ad Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Sat, 23 Sep 2023 02:23:57 +0300 Subject: [PATCH] tests: xfail test_import_empty_dir --- dvc_gs/tests/test_dvc.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dvc_gs/tests/test_dvc.py b/dvc_gs/tests/test_dvc.py index a2bf12b..32c93a6 100644 --- a/dvc_gs/tests/test_dvc.py +++ b/dvc_gs/tests/test_dvc.py @@ -57,3 +57,15 @@ def dir_md5(self): # we temporarily set it to None until the test is revisited # https://github.com/iterative/dvc-gs/issues/7#issuecomment-1218497067 return None + + @pytest.mark.xfail(reason="https://github.com/iterative/dvc-gs/issues/46") + def test_import_empty_dir( + self, + tmp_dir, + dvc, + workspace, # pylint: disable=redefined-outer-name + is_object_storage, + ): + return super().test_import_empty_dir( + tmp_dir, dvc, workspace, is_object_storage + )