-
Notifications
You must be signed in to change notification settings - Fork 263
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
Add kn revision delete command #207
Conversation
Hi @navidshaikh. Thanks for your PR. I'm waiting for a knative member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
@navidshaikh: Cannot trigger testing until a trusted user reviews the PR and leaves an In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
Is think there's a race in the test
|
Or update is broken. |
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.
Unit and integration tests?
@maximilien : Thanks for review, I've updated the PR with unit and integration tests (added TestRevisionWorkflow, as IMO this isn't basic workflow). |
@rhuss : Yup, in this e2e run TestBasicWorkflow passed. |
Added revision delete command tests in new workflow namely TestRevisionWorkflow.
Also adds check for 'No resources found' while grabbing revision name.
Oops, test failures ;-( |
/retest |
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.
Some minor nit-picks, otherwise looks fine for me. Thanks !
@rhuss : Thanks for the review, updated the PR, PTAL. |
|
} else if name != revName { | ||
t.Errorf("Bad revision name returned after delete.") | ||
} | ||
commands.TestContains(t, output, []string{"Revision", revName, "deleted", "namespace", commands.FakeNamespace}, "word in output") |
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.
Nice 👍
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: navidshaikh, rhuss The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
The following is the coverage report on pkg/.
|
/lgtm |
* Adds kn revision delete command * Adds unit tests for revision delete command * Adds integration tests for revision delete command Added revision delete command tests in new workflow namely TestRevisionWorkflow. * Removes extra line and renames an import alias * Adds 10 seconds sleep between service create and revision delete Also adds check for 'No resources found' while grabbing revision name. * Clean up imports * Removes the pause after service create * Updates testing output strings in unit and e2e * Updates post goimports on hack and test dirs
Fixes #203