Skip to content

Instantly share code, notes, and snippets.

@shcheklein
Created June 11, 2020 01:16
Show Gist options
  • Save shcheklein/30103d6fcb9d58e8be85e0be0f1b22a0 to your computer and use it in GitHub Desktop.
Save shcheklein/30103d6fcb9d58e8be85e0be0f1b22a0 to your computer and use it in GitHub Desktop.
dvc run stage order not preserved
(.env) √ ~/Projects % dvc run -n a echo
(.env) √ ~/Projects % dvc run -n b echo
(.env) √ ~/Projects % cat dvc.yaml
stages:
a:
cmd: echo
b:
cmd: echo
(.env) √ ~/Projects % dvc run -n a -f echo a
(.env) √ ~/Projects % cat dvc.yaml
stages:
b:
cmd: echo
a:
cmd: echo a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment