Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions dvc/dvcfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,11 @@ def remove_stage(self, stage):

logger.debug("Removing '%s' from '%s'", stage.name, self.path)
del d["stages"][stage.name]
dump_yaml(self.path, d)

if d["stages"]:
dump_yaml(self.path, d)
else:
super().remove()


class Lockfile(FileMixin):
Expand Down Expand Up @@ -286,7 +290,10 @@ def remove_stage(self, stage):
logger.debug("Removing '%s' from '%s'", stage.name, self.path)
del d[stage.name]

dump_yaml(self.path, d)
if d:
dump_yaml(self.path, d)
else:
self.remove()


class Dvcfile:
Expand Down
17 changes: 17 additions & 0 deletions tests/func/test_dvcfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,23 @@ def test_remove_stage_preserves_comment(tmp_dir, dvc, run_copy):
)


def test_remove_stage_removes_dvcfiles_if_no_stages_left(
tmp_dir, dvc, run_copy
):
tmp_dir.gen("foo", "foo")
run_copy("foo", "bar", name="run_copy")

dvc_file = Dvcfile(dvc, PIPELINE_FILE)

assert dvc_file.exists()
assert (tmp_dir / PIPELINE_LOCK).exists()
assert (tmp_dir / "foo").exists()

dvc_file.remove_stage(dvc_file.stages["run_copy"])
assert not dvc_file.exists()
assert not (tmp_dir / PIPELINE_LOCK).exists()


def test_dvcfile_dump_preserves_meta(tmp_dir, dvc, run_copy):
tmp_dir.gen("foo", "foo")
stage = run_copy("foo", "bar", name="run_copy")
Expand Down