-
Notifications
You must be signed in to change notification settings - Fork 597
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
Developer productivity: faster test cycle #1814
Comments
/assign @nachocano |
An easy fix could be adding random postfix for the namespace of each test. |
Yes - and some easy way to delete all namespace that share the same prefix? |
@Fredy-Z on related note: is there some way to run tests without parallel option and/or other option so I can see test logging output if there is timeout? Currently all I get is lot of stack traces but logging is lost :( Moved to separate issue #1894 |
@Fredy-Z what do you think about #1824 ? |
I was expecting to see log output such as
instead I only getting stack traces because of timeout and no idea how far test got and where it got stack as there is no logging ... |
That is an issue of Go, and there is an issue tracking it - golang/go#24929. It has been there for quite a while but still hasn't been fixed.. |
Moved to #1894 |
/milestone v0.10.0 |
Looks like there are two issues maybe in this issue IIUC?
Could we split second into its own issue? |
@vagababov @Fredy-Z moved logging to new issue: #1894 |
@Harwayne: Closing this issue. 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. |
Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com> Co-authored-by: Pierangelo Di Pilato <pierdipi@redhat.com>
Problem
When I run tests during development I have to repeat them seeveral times until they succeed (or fail in useful way) because of resource conflicts between multiple test runs, for example test fails because namespace is not cleaned
or previous artifacts like channels were not deleted
Persona:
Which persona is this feature for?
Contributors
Exit Criteria
A measurable (binary) test that would indicate that the problem has been resolved.
Every e2e test in loca dev mode works or fails quickly and not because of setup/cleanup issues
Time Estimate (optional):
How many developer-days do you think this may take to resolve?
1?
Additional context (optional)
Add any other context about the feature request here.
Every re-run test translates in wasted 30seconds-1minute - tha adds up quickly ...
Example to reproduce in #1813
The text was updated successfully, but these errors were encountered: