You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running tests with the -skip flag should be able to use the test result cache.
In the original design of the test result cache (#11193), the test flag -run is a cacheable flag. However, the subsequent proposal (#41583) that added the -skip flag to go test but did not make it cacheable.
Both -skip and -run are flags used to match or filter the test cases. Since the -run parameter is cacheable, the -skip parameter should also be cacheable, too.
The text was updated successfully, but these errors were encountered:
Proposal Details
Running tests with the
-skip
flag should be able to use the test result cache.In the original design of the test result cache (#11193), the test flag
-run
is a cacheable flag. However, the subsequent proposal (#41583) that added the-skip
flag to go test but did not make it cacheable.Both
-skip
and-run
are flags used to match or filter the test cases. Since the-run
parameter is cacheable, the-skip
parameter should also be cacheable, too.The text was updated successfully, but these errors were encountered: