Can i remove passed test?
sebassdc opened this issue · 2 comments
sebassdc commented
Im running test.datatypes.test_str.StrTests
and all pass, can i delete the test that pass correctly?
freakboy3742 commented
@sebassdc No - you don't ever delete tests - the point of tests is to keep running them after every change to make sure that behavior doesn't change unexpectedly as a result of some future change.
The only things you might delete are entries in the "not_implemented" lists, or @expectedfailure markers. However, you should only be deleting these in response to implementing some new functionality that causes those tests that pass.
Does that make sense?
sebassdc commented
Thanks, it was a pretty little big confusion. 😅