We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
git@github.com:snowplow/snowplow-python-tracker.git is not found
git@github.com:snowplow/snowplow-python-tracker.git
This can be found at https://pypi.org/project/minimal-snowplow-tracker/
>>> import urlextract >>> e = urlextract.urlextract_core.URLExtract() >>> e.find_urls('git@github.com:snowplow/snowplow-python-tracker.git') []
A good list of sample VCS links can be found at https://github.com/coala/git-url-parse/blob/master/test/conftest.py
The text was updated successfully, but these errors were encountered:
Also worth noting that pip VCS branch support @ causes no result if there is no path
@
>>> e.find_urls(' git+https://git.foobar.com@branch ') [] >>> e.find_urls(' git+https://git.foobar.com/@foo ') ['git+https://git.foobar.com/@foo']
Sorry, something went wrong.
Hi @jayvdb or @lipoja I am interested to work on this issue.
So the expected result, we should return the git URL in this condition:
>>> e.find_urls('git@github.com:snowplow/snowplow-python-tracker.git') ['git@github.com:snowplow/snowplow-python-tracker.git']
Re: https://github.com/coala/git-url-parse/blob/master/test/conftest.py should we copy the URLs to test/unit/conftest.py?
test/unit/conftest.py
No branches or pull requests
git@github.com:snowplow/snowplow-python-tracker.git
is not foundThis can be found at https://pypi.org/project/minimal-snowplow-tracker/
A good list of sample VCS links can be found at
https://github.com/coala/git-url-parse/blob/master/test/conftest.py
The text was updated successfully, but these errors were encountered: