-
Notifications
You must be signed in to change notification settings - Fork 105
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
Environment.Test enhancements #41
Environment.Test enhancements #41
Conversation
004e8f7
to
763dc3f
Compare
examples/suites/featureset_test.go
Outdated
"sigs.k8s.io/e2e-framework/pkg/features" | ||
) | ||
|
||
// FeatureSetTest shows how Environment.Test can be used to |
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.
name change to TestFeatureSet
This patch introduces several enhancements to how feature tests are executed. 0) Environment.Test has been updated with the ability to test more than one tests 1) Test writer can specify a before/after feature action to be executed 3) Updated examples to highlight these changes Signed-off-by: Vladimir Vivien <vivienv@vmware.com>
763dc3f
to
ac21784
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ShwethaKumbla, vladimirvivien 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 |
/lgtm |
This PR adds several enhancements around Test/Feature lifecycles
env.Environment.BeforeTest
toenv.Environment.BeforeEachTest
#35env.Environment.Test
to execute feature sets #36env.Environment.BeforeEachFeature
andenv.Environment.AfterEachFeature
#37Fixes #35
Fixes #36
Fixes #37