remove unused code
This commit is contained in:
parent
427cf6f66d
commit
6b6080ae6c
|
@ -477,14 +477,3 @@ def getcfg(args, inibasenames):
|
||||||
return iniconfig['pytest']
|
return iniconfig['pytest']
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
def findupwards(current, basename):
|
|
||||||
current = py.path.local(current)
|
|
||||||
while 1:
|
|
||||||
p = current.join(basename)
|
|
||||||
if p.check():
|
|
||||||
return p
|
|
||||||
p = current.dirpath()
|
|
||||||
if p == current:
|
|
||||||
return
|
|
||||||
current = p
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue