-
Notifications
You must be signed in to change notification settings - Fork 347
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
Re enable skipped e2e tests #2647
Conversation
Signed-off-by: Yashodhan Joshi <[email protected]>
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #2647 +/- ##
=======================================
Coverage 65.50% 65.50%
=======================================
Files 133 133
Lines 16916 16916
=======================================
Hits 11081 11081
Misses 5835 5835 |
Box::new(|| match std::env::var("RUNTIME_KIND") { | ||
Err(_) => true, | ||
Ok(s) => s != "runc", | ||
}), |
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.
How about turn into a function and putting others together?
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.
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.
Done, please take a look!
Signed-off-by: Yashodhan Joshi <[email protected]>
1451e3a
to
b0a4457
Compare
closes #2616
There are some tests which are (for now) only supported by youki, and not by the latest release of runc. Instead of not running those tests, we instead check an env var to see what runtime we are running, and skip those for runc.