Skip to content

Commit

Permalink
bench: drop add/checkout from test_sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Aug 21, 2024
1 parent e76aaea commit 26ad01b
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions dvc/testing/benchmarks/cli/stories/use_cases/test_sharing.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import shutil


def test_sharing(bench_dvc, tmp_dir, dvc, dataset, remote):
bench_dvc("add", dataset)
bench_dvc("add", dataset, name="noop")
def test_sharing(bench_dvc, tmp_dir, dvc, make_dataset, remote):
dataset = make_dataset(cache=True, dvcfile=True)

bench_dvc("push")
bench_dvc("push", name="noop")
Expand All @@ -13,6 +12,3 @@ def test_sharing(bench_dvc, tmp_dir, dvc, dataset, remote):

bench_dvc("fetch")
bench_dvc("fetch", name="noop")

bench_dvc("checkout")
bench_dvc("checkout", name="noop")

0 comments on commit 26ad01b

Please sign in to comment.