@@ -190,26 +190,28 @@ def test_sequencing_ongoing(run_fixture, request):
190190
191191
192192@pytest .mark .parametrize (
193- "run_fixture, remote , with_exit_code_file" ,
193+ "run_fixture, metadata_only , with_exit_code_file" ,
194194 [
195195 ("novaseqxplus_testobj" , False , True ),
196- ("novaseqxplus_testobj" , True , False ),
196+ ("novaseqxplus_testobj" , False , False ),
197197 ("novaseqxplus_testobj" , True , True ),
198198 ("nextseq_testobj" , False , True ),
199- ("nextseq_testobj" , True , False ),
199+ ("nextseq_testobj" , False , False ),
200200 ("nextseq_testobj" , True , True ),
201201 ("miseqseq_testobj" , False , True ),
202- ("miseqseq_testobj" , True , False ),
202+ ("miseqseq_testobj" , False , False ),
203203 ("miseqseq_testobj" , True , True ),
204204 ("miseqseqi100_testobj" , False , True ),
205- ("miseqseqi100_testobj" , True , False ),
205+ ("miseqseqi100_testobj" , False , False ),
206206 ("miseqseqi100_testobj" , True , True ),
207207 ],
208208)
209- def test_generate_rsync_command (run_fixture , remote , with_exit_code_file , request ):
209+ def test_generate_rsync_command (
210+ run_fixture , metadata_only , with_exit_code_file , request
211+ ):
210212 run_obj = request .getfixturevalue (run_fixture )
211213 rsync_command = run_obj .generate_rsync_command (
212- remote = remote , with_exit_code_file = with_exit_code_file
214+ metadata_only = metadata_only , with_exit_code_file = with_exit_code_file
213215 )
214216 assert "run-one rsync" in rsync_command
215217 assert "--log-file=" in rsync_command
@@ -337,7 +339,7 @@ def test_metadata_synced(run_fixture, sync_successful, request):
337339def test_sync_metadata (run_fixture , request , monkeypatch ):
338340 run_obj = request .getfixturevalue (run_fixture )
339341
340- def mock_generate_rsync_command (remote , with_exit_code_file ):
342+ def mock_generate_rsync_command (metadata_only , with_exit_code_file ):
341343 return "rsync command"
342344
343345 def mock_rsync_is_running (src , dst ):
0 commit comments