You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ svn --version
Warning: Failed to set locale category LC_NUMERIC to en_IN.
Warning: Failed to set locale category LC_TIME to en_IN.
Warning: Failed to set locale category LC_COLLATE to en_IN.
Warning: Failed to set locale category LC_MONETARY to en_IN.
Warning: Failed to set locale category LC_MESSAGES to en_IN.
svn, version 1.13.0 (r1867053)
compiled Feb 19 2020, 02:08:03 on x86_64-apple-darwin19.3.0
Copyright (C) 2019 The Apache Software Foundation.
This software consists of contributions made by many people;
see the NOTICE file for more information.
Subversion is open source software, see http://subversion.apache.org/
The following repository access (RA) modules are available:
* ra_svn : Module for accessing a repository using the svn network protocol.
- with Cyrus SASL authentication
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
* ra_serf : Module for accessing a repository via WebDAV protocol using serf.
- using serf 1.3.9 (compiled with 1.3.9)
- handles 'http' scheme
- handles 'https' scheme
The following authentication credential caches are available:
* Mac OS X Keychain
The text was updated successfully, but these errors were encountered:
In order to move this self-created issue forward, I have created the PR #7969 and applied the requested changes to the same. Would appreciate reviews about the implementation to move the PR ahead and close this issue.
pradyunsg
changed the title
Subversion test failing in MAC OSX
Subversion test failing in Mac OS
May 12, 2020
Environment
I have installed pip from the source tree using
pip install .
in a virtualenvDescription
The test case
test_subversion__call_vcs_version
listed at https://github.com/pypa/pip/blob/master/tests/unit/test_vcs.py#L430 fails with an assertion errorExpected behavior
The test should pass.
How to Reproduce
Run
tox -e py tests/unit/test_vcs.py::test_subversion__call_vcs_version -s
to run the specific test in question.Output
The failure output is as follows
The error is because in https://github.com/pypa/pip/blob/master/src/pip/_internal/vcs/subversion.py#L204, we always assume that the version string,
svn, version
will be present in the first line, but that might not always be the case.The text was updated successfully, but these errors were encountered: