-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
feat(perforce): Add Perforce integration infrastructure and stubs #103287
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
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #103287 +/- ##
===========================================
+ Coverage 80.39% 80.58% +0.18%
===========================================
Files 9261 9265 +4
Lines 395395 395539 +144
Branches 25207 25207
===========================================
+ Hits 317888 318744 +856
+ Misses 77077 76365 -712
Partials 430 430 |
a978a06 to
1197dcd
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please handle Perforce SSL protocol connections, otherwise the connection will be plain text over public internet
Christinarlong
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, though did you mean to add a feature flag in this PR ?
|
@Christinarlong yes, I think to start with we should have a feature flag behind this. Any examples on how to do that for an integration? |
This PR adds the boilerplate and infrastructure for Perforce/Helix Core integration: - Type definitions: Added PERFORCE to ExternalProviders and IntegrationProviderSlug - Model updates: Added Perforce to external actor provider choices - Integration registration: Registered PerforceIntegrationProvider - Feature flag: Added organizations:integrations-perforce - Dependencies: Added p4python package - Stub implementations: Created empty Perforce integration, client, and repository classes with all method signatures All methods are stubbed out with proper type hints and docstrings. Implementation will be added in a follow-up PR.
a31dd31 to
62533f9
Compare
GabeVillalobos
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only blocking this for the security question on the p4python lib. Everything else seems reasonable.
This PR adds the boilerplate and infrastructure for Perforce/Helix Core integration:
All methods are stubbed out with proper type hints and docstrings. Implementation will be added in a follow-up PR.