Why is the dependency on vscode-kubernetes added during release? #3091#3170
Conversation
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #3170 +/- ##
==========================================
+ Coverage 37.03% 37.30% +0.26%
==========================================
Files 75 75
Lines 5265 5265
Branches 1000 1000
==========================================
+ Hits 1950 1964 +14
+ Misses 3315 3301 -14 ☔ View full report in Codecov by Sentry. |
datho7561
left a comment
There was a problem hiding this comment.
Looks good so far, integration tests are passing for me. You will need to remove the part in the Jenkinsfile that adds the Kubernetes extension to the package.json
Yes, but have you tried running tests from vscode run "Extension Debug Tests" on Debug view?
Sure I'll remove this part |
0deebe9 to
457125c
Compare
|
The tests suites seem debuggable to me, but I needed to add the following: diff --git a/.vscode/launch.json b/.vscode/launch.json
index 7f70119d..227fe9be 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -74,7 +74,8 @@
"sourceMaps": true,
"preLaunchTask": "instrument",
"env": {
- "VSCODE_REDHAT_TELEMETRY_DEBUG":"true"
+ "VSCODE_REDHAT_TELEMETRY_DEBUG": "true",
+ "IS_OPENSHIFT": "true",
}
},
{for the integration test suite, since I'm using an OpenShift cluster |
…at-developer#3091 Fixes: redhat-developer#3091 Signed-off-by: Victor Rubezhny <vrubezhny@redhat.com>
457125c to
08b3407
Compare
Added |
datho7561
left a comment
There was a problem hiding this comment.
Looks good. Thanks, Victor!
Fixes: #3091