(tmp_dir, dvc)
| 209 | |
| 210 | |
| 211 | def test_commit_no_exec_missing_dep(tmp_dir, dvc): |
| 212 | stage = dvc.run(name="my", cmd="mycmd", deps=["dep"], outs=["out"], no_exec=True) |
| 213 | assert dvc.status(stage.path) |
| 214 | |
| 215 | with pytest.raises(DependencyDoesNotExistError): |
| 216 | dvc.commit(stage.path, force=True) |
| 217 | |
| 218 | |
| 219 | def test_commit_no_exec_missing_out(tmp_dir, dvc): |