@@ -75,7 +75,7 @@ def run_dvc(*argv):
75
75
76
76
77
77
@pytest .mark .parametrize ("remote_url" , remote_params , indirect = True )
78
- def test_get_url (repo_dir , dvc_repo , remote_url ):
78
+ def test_get_url (remote_url , repo_dir , dvc_repo ):
79
79
run_dvc ("remote" , "add" , "-d" , "upstream" , remote_url )
80
80
dvc_repo .add (repo_dir .FOO )
81
81
@@ -84,7 +84,7 @@ def test_get_url(repo_dir, dvc_repo, remote_url):
84
84
85
85
86
86
@pytest .mark .parametrize ("remote_url" , remote_params , indirect = True )
87
- def test_get_url_external (dvc_repo , erepo , remote_url ):
87
+ def test_get_url_external (remote_url , dvc_repo , erepo ):
88
88
_set_remote_url_and_commit (erepo .dvc , remote_url )
89
89
90
90
# Using file url to force clone to tmp repo
@@ -94,7 +94,7 @@ def test_get_url_external(dvc_repo, erepo, remote_url):
94
94
95
95
96
96
@pytest .mark .parametrize ("remote_url" , all_remote_params , indirect = True )
97
- def test_open (repo_dir , dvc_repo , remote_url ):
97
+ def test_open (remote_url , repo_dir , dvc_repo ):
98
98
run_dvc ("remote" , "add" , "-d" , "upstream" , remote_url )
99
99
dvc_repo .add (repo_dir .FOO )
100
100
run_dvc ("push" )
@@ -107,7 +107,7 @@ def test_open(repo_dir, dvc_repo, remote_url):
107
107
108
108
109
109
@pytest .mark .parametrize ("remote_url" , all_remote_params , indirect = True )
110
- def test_open_external (dvc_repo , erepo , remote_url ):
110
+ def test_open_external (remote_url , dvc_repo , erepo ):
111
111
erepo .dvc .scm .checkout ("branch" )
112
112
_set_remote_url_and_commit (erepo .dvc , remote_url )
113
113
erepo .dvc .scm .checkout ("master" )
@@ -127,7 +127,7 @@ def test_open_external(dvc_repo, erepo, remote_url):
127
127
128
128
129
129
@pytest .mark .parametrize ("remote_url" , all_remote_params , indirect = True )
130
- def test_missing (repo_dir , dvc_repo , remote_url ):
130
+ def test_missing (remote_url , repo_dir , dvc_repo ):
131
131
run_dvc ("add" , repo_dir .FOO )
132
132
run_dvc ("remote" , "add" , "-d" , "upstream" , remote_url )
133
133
0 commit comments