1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Skip svn tests if svnadmin is not available. Fixes #7823.

This commit is contained in:
Jason R. Coombs 2020-03-06 04:09:48 -05:00
parent 60d640276a
commit 2c0d691893

View file

@ -1105,7 +1105,9 @@ def need_bzr(fn):
def need_svn(fn):
return pytest.mark.svn(need_executable(
'Subversion', ('svn', '--version')
)(fn))
)(need_executable(
'Subversion Admin', ('svnadmin', '--version')
)(fn)))
def need_mercurial(fn):