-
Notifications
You must be signed in to change notification settings - Fork 56
Add repo URL support and testing for cocoapods #153
New issue
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
Changes from all commits
4bd76d5
aee327c
486be44
f7a88ba
7ebe681
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,8 @@ def test_purl2url_get_repo_url(): | |
| "pkg:golang/xorm.io/xorm": "https://pkg.go.dev/xorm.io/xorm", | ||
| "pkg:golang/xorm.io/xorm@v0.8.2": "https://pkg.go.dev/xorm.io/xorm@v0.8.2", | ||
| "pkg:golang/gopkg.in/ldap.v3@v3.1.0": "https://pkg.go.dev/gopkg.in/ldap.v3@v3.1.0", | ||
| "pkg:cocoapods/AFNetworking@4.0.1": "https://cocoapods.org/pods/AFNetworking", | ||
| "pkg:cocoapods/MapsIndoors@3.24.0": "https://cocoapods.org/pods/MapsIndoors", | ||
| } | ||
|
|
||
| for purl, url in purls_url.items(): | ||
|
|
@@ -135,6 +137,7 @@ def test_purl2url_get_inferred_urls(): | |
| "https://gitlab.com/tg1999/firebase/-/archive/1a122122/firebase-1a122122.tar.gz", | ||
| ], | ||
| "pkg:pypi/sortedcontainers@2.4.0": ["https://pypi.org/project/sortedcontainers/2.4.0/"], | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you restore the formatting as it was? The black tests are failing
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pombredanne I've turned off Black (it had been set in 2 VSCode locations and turned off in just one) and restored the original format for that test entry you identified. Committed and pushed just now. |
||
| "pkg:cocoapods/AFNetworking@4.0.1": ["https://cocoapods.org/pods/AFNetworking"], | ||
pombredanne marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| "pkg:composer/psr/log@1.1.3": ["https://packagist.org/packages/psr/log#1.1.3"], | ||
| "pkg:rubygems/package-name": ["https://rubygems.org/gems/package-name"], | ||
| "pkg:bitbucket/birkenfeld": [], | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.