Commit 5f1ba589 by Timothy Sutton

Git integration test: remove test for ambiguous .git/branches dir

- '.git/branches' does not always exist, but the git integration
  tests always checks for this directory's existence so it always
  fails
- more info:
  - http://stackoverflow.com/questions/10398225/what-is-the-git-branches-folder-used-for
parent 224fd0ad
......@@ -65,16 +65,11 @@
stat: path={{ checkout_dir }}/.git/HEAD
register: head
- name: check for remotes
stat: path={{ checkout_dir }}/.git/branches
register: branches
- name: assert presence of tags/trunk/branches
assert:
that:
- "tags.stat.isdir"
- "head.stat.isreg"
- "branches.stat.isdir"
- name: verify on a reclone things are marked unchanged
assert:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment