Skip to content

Commit dc33fde

Browse files
committed
tests: api: fully test GDrive
1 parent 79e76de commit dc33fde

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/func/test_api.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from dvc.utils.fs import remove
1111
from tests.remotes import GCP, HDFS, OSS, S3, SSH, Azure, GDrive, Local
1212

13-
remote_params = [S3, GCP, Azure, OSS, SSH, HDFS]
13+
remote_params = [S3, GCP, Azure, GDrive, OSS, SSH, HDFS]
1414
all_remote_params = [Local] + remote_params
1515

1616

@@ -56,9 +56,7 @@ def test_get_url_requires_dvc(tmp_dir, scm):
5656
api.get_url("foo", repo=f"file://{tmp_dir}")
5757

5858

59-
@pytest.mark.parametrize(
60-
"remote_url", all_remote_params + [GDrive], indirect=True
61-
)
59+
@pytest.mark.parametrize("remote_url", all_remote_params, indirect=True)
6260
def test_open(remote_url, tmp_dir, dvc):
6361
run_dvc("remote", "add", "-d", "upstream", remote_url)
6462
tmp_dir.dvc_gen("foo", "foo-text")

0 commit comments

Comments
 (0)