diff --git a/.cruft.json b/.cruft.json index 03b6501..b8e295b 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/iterative/cookiecutter-dvc-plugin", - "commit": "825ad46a5fdd5cfb92f4993cad2ac6a6d1b0b971", + "commit": "7b38e245b247bee0a87ced7307f8f72d6ccef267", "checkout": null, "context": { "cookiecutter": { diff --git a/dvc_ssh/tests/test_dvc.py b/dvc_ssh/tests/test_dvc.py index 8248a36..d6726ac 100644 --- a/dvc_ssh/tests/test_dvc.py +++ b/dvc_ssh/tests/test_dvc.py @@ -6,8 +6,13 @@ TestRemote, ) from dvc.testing.workspace_tests import TestAdd as _TestAdd +from dvc.testing.workspace_tests import ( # noqa, pylint: disable=unused-import + TestGetUrl, +) from dvc.testing.workspace_tests import TestImport as _TestImport -from dvc.testing.workspace_tests import TestLsUrl as _TestLsUrl +from dvc.testing.workspace_tests import ( # noqa, pylint: disable=unused-import + TestLsUrl, +) @pytest.fixture @@ -51,7 +56,3 @@ def hash_value(self): @pytest.fixture def dir_hash_value(self): return "b6dcab6ccd17ca0a8bf4a215a37d14cc.dir" - - -class TestLsUrl(_TestLsUrl): - pass