-
Notifications
You must be signed in to change notification settings - Fork 222
Migrate system tests to use GRPC V2 API #6696
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
base: develop
Are you sure you want to change the base?
Conversation
|
bors try |
tryBuild failed: |
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## develop #6696 +/- ##
=========================================
- Coverage 76.9% 76.9% -0.1%
=========================================
Files 369 369
Lines 50315 50318 +3
=========================================
+ Hits 38734 38735 +1
- Misses 9374 9376 +2
Partials 2207 2207 ☔ View full report in Codecov by Sentry. |
|
bors try |
tryBuild failed: |
|
bors try |
tryBuild failed: |
|
bors try |
tryBuild failed: |
|
bors try |
tryBuild failed: |
|
bors try |
tryBuild failed: |
|
bors try |
tryBuild failed: |
15e6bcc to
174c4f7
Compare
d90e154 to
c2a8152
Compare
c2a8152 to
7c8831e
Compare
7a38e33 to
8071b35
Compare
|
bors try |
tryBuild failed: |
baf3c83 to
b8740c3
Compare
0afa098 to
53dffb3
Compare
53dffb3 to
cf3b7cc
Compare
Motivation
System tests still use the v1 API. I migrated the tests to instead use the V2 API where possible.
Closes #6692
TODO: there appear to be issues with the v2beta1 and v2alpha1 APIs regarding streaming of layers. To avoid putting too much effort into this I'll put this into draft for now and will take another look later.
Description
All tests where migrated to use v2 APIs over v1 APIs. The only requests not yet migrated are proposal streams since those aren't available in v2 (and probably won't ever be). We should consider implementing those tests in a different way.
Test Plan
All system tests still pass as before.
TODO