mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-05-08 08:19:13 -05:00
fix _path_without_us under test when path segment ends in slash
This commit is contained in:
@@ -259,7 +259,10 @@ def _path_without_us():
|
|||||||
exe = find_executable('pre-commit', _environ=env)
|
exe = find_executable('pre-commit', _environ=env)
|
||||||
while exe:
|
while exe:
|
||||||
parts = env['PATH'].split(os.pathsep)
|
parts = env['PATH'].split(os.pathsep)
|
||||||
after = [x for x in parts if x.lower() != os.path.dirname(exe).lower()]
|
after = [
|
||||||
|
x for x in parts
|
||||||
|
if x.lower().rstrip(os.sep) != os.path.dirname(exe).lower()
|
||||||
|
]
|
||||||
if parts == after:
|
if parts == after:
|
||||||
raise AssertionError(exe, parts)
|
raise AssertionError(exe, parts)
|
||||||
env['PATH'] = os.pathsep.join(after)
|
env['PATH'] = os.pathsep.join(after)
|
||||||
|
|||||||
Reference in New Issue
Block a user