Skip to content

Commit

Permalink
Merge pull request #110 from RonnyPfannschmidt/fix-109
Browse files Browse the repository at this point in the history
Fix #109
  • Loading branch information
RonnyPfannschmidt authored Oct 13, 2016
2 parents 7961046 + de40adc commit 570f7f5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
v1.14.1
=======

* fix #109: when detecting a dirty git workdir
don't consider untracked file
(this was a regression due to #86 in v1.13.1)
* consider the distance 0 when the git node is unknown
(happens when you haven't commited anything)

v1.14.0
=======

Expand Down
4 changes: 2 additions & 2 deletions setuptools_scm/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def from_potential_worktree(cls, wd):
return cls(real_wd)

def is_dirty(self):
out, _, _ = self.do_ex("git status --porcelain")
out, _, _ = self.do_ex("git status --porcelain --untracked-files=no")
return bool(out)

def node(self):
Expand All @@ -50,7 +50,7 @@ def parse(root, describe_command=DEFAULT_DESCRIBE):
dirty = wd.is_dirty()

if rev_node is None:
return meta('0.0', dirty=dirty)
return meta('0.0', distance=0, dirty=dirty)

out, err, ret = do_ex(describe_command, root)
if ret:
Expand Down
6 changes: 5 additions & 1 deletion testing/test_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def wd(wd):


def test_version_from_git(wd):
assert wd.version == '0.0'
assert wd.version == '0.1.dev0'

wd.commit_testfile()
assert wd.version.startswith('0.1.dev1+')
Expand All @@ -34,8 +34,12 @@ def test_version_from_git(wd):


@pytest.mark.issue(108)
@pytest.mark.issue(109)
def test_git_worktree(wd):
wd.write('test.txt', 'test2')
# untracked files dont change the state
assert wd.version == '0.1.dev0'
wd('git add test.txt')
assert wd.version.startswith('0.1.dev0+d')


Expand Down

0 comments on commit 570f7f5

Please sign in to comment.