parent
ad34e50b71
commit
2514b8faaf
|
@ -1,6 +1,9 @@
|
||||||
Changes between 1.0.0b8 and 1.0.0b9
|
Changes between 1.0.0b8 and 1.0.0b9
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
|
* fix svn-1.6 compat issue with py.path.svnwc().versioned()
|
||||||
|
(thanks Wouter Vanden Hove)
|
||||||
|
|
||||||
* dist-testing: properly handle test items that get locally
|
* dist-testing: properly handle test items that get locally
|
||||||
collected but cannot be collected on the remote side - often
|
collected but cannot be collected on the remote side - often
|
||||||
due to platform/dependency reasons
|
due to platform/dependency reasons
|
||||||
|
|
|
@ -454,6 +454,8 @@ recursively. """
|
||||||
except py.process.cmdexec.Error, e:
|
except py.process.cmdexec.Error, e:
|
||||||
if e.err.find('is not a working copy')!=-1:
|
if e.err.find('is not a working copy')!=-1:
|
||||||
return False
|
return False
|
||||||
|
if e.err.lower().find('not a versioned resource') != -1:
|
||||||
|
return False
|
||||||
raise
|
raise
|
||||||
else:
|
else:
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue