(tmp_dir, dvc)
| 217 | |
| 218 | |
| 219 | def test_commit_no_exec_missing_out(tmp_dir, dvc): |
| 220 | stage = dvc.run(name="my", cmd="mycmd", outs=["out"], no_exec=True) |
| 221 | assert dvc.status(stage.path) |
| 222 | |
| 223 | with pytest.raises(OutputDoesNotExistError): |
| 224 | dvc.commit(stage.path, force=True) |
| 225 | |
| 226 | |
| 227 | def test_commit_pipeline_stage(tmp_dir, dvc, run_copy): |