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

Merge pull request #7824 from jaraco/bugfix/7823-need-svnadmin

Skip svn tests if svnadmin is not available.
This commit is contained in:
Pradyun Gedam 2020-03-06 23:04:28 +05:30 committed by GitHub
commit 3487df553f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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):