(tmp_dir, dvc, fs, msg, capsys, local_remote)
| 473 | ], |
| 474 | ) |
| 475 | def test_fetch_stats(tmp_dir, dvc, fs, msg, capsys, local_remote): |
| 476 | tmp_dir.dvc_gen(fs) |
| 477 | dvc.push() |
| 478 | clean(list(fs.keys()), dvc) |
| 479 | |
| 480 | main(["fetch"]) |
| 481 | out, _ = capsys.readouterr() |
| 482 | assert msg in out |
| 483 | |
| 484 | |
| 485 | def test_pull_stats(tmp_dir, dvc, capsys, local_remote): |