-
Notifications
You must be signed in to change notification settings - Fork 140
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
Skip unit tests in windows #101
Skip unit tests in windows #101
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
Welcome @mayankshah1607! |
Hi @mayankshah1607. Thanks for your PR. I'm waiting for a kubernetes-csi 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. |
Pull Request Test Coverage Report for Build 240626846
💛 - Coveralls |
CLA has been signed! :) |
bb3d4de
to
1987341
Compare
/ok-to-test |
|
Signed-off-by: Mayank Shah <[email protected]>
1987341
to
a311dcc
Compare
pkg/smb/smb_test.go
Outdated
@@ -43,6 +43,10 @@ func TestNewFakeDriver(t *testing.T) { | |||
} | |||
|
|||
func TestIsCorruptedDir(t *testing.T) { | |||
if isWindows() { |
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.
what about write like this:
skipIfTestingInWindows(t)
and in func skipIfTestingInWindows
:
if runtime == windows {
t.Skip("Skipping tests on Windows")
}
that could reduce code
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.
Makes sense! On it :)
Signed-off-by: Mayank Shah <[email protected]>
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.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: andyzhangx, mayankshah1607 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 |
Signed-off-by: Mayank Shah [email protected]
What type of PR is this?
/kind test
/kind flake
What this PR does / why we need it:
This PR skips the following tests in
pkg/smb
when running on Windows environment:TestNodeStageVolume
TestNodePublishVolume
TestNodeUnpublishVolume
TestNodeUnstageVolume
TestIsCorruptedDir
Which issue(s) this PR fixes:
Fixes #82
Requirements:
Release note: