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
Hi! Great library. It's become a staple for me. I have a bunch of code that is a simple 'if running on windows skip'. I would really like to be able to conditionally ignore something based on platform or any other cfg-var. Current solution is ok, however I'd really like to see the ignored tests and reasons in the run summary.
The text was updated successfully, but these errors were encountered:
Better information regarding the tests that were ignored and their respective reasoning.
The two are different things. Can I assume you want the prior? I mean, if the library were to support it, it would require a good way to inform it, of course.
Cargo test should give you nice information about ignored tasks for free if we can conditionally ignore things. The main idea is it would be nice to see when running tests how many were ignored, so we should get #2 for free if we do #1
Hi! Great library. It's become a staple for me. I have a bunch of code that is a simple 'if running on windows skip'. I would really like to be able to conditionally ignore something based on platform or any other cfg-var. Current solution is ok, however I'd really like to see the ignored tests and reasons in the run summary.
The text was updated successfully, but these errors were encountered: