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
I am encountering an issue where the testifylint does not flag improper use of t.Parallel() within the testify suite structures. According to testify's practice and concurrency model, using t.Parallel() directly within suite-methods should be avoided as it can lead to race conditions or unexpected behaviors in the context of suite test execution. However, the linter does not report this.
Hello testifying maintainers,
I am encountering an issue where the testifylint does not flag improper use of t.Parallel() within the testify suite structures. According to testify's practice and concurrency model, using t.Parallel() directly within suite-methods should be avoided as it can lead to race conditions or unexpected behaviors in the context of suite test execution. However, the linter does not report this.
example:
The text was updated successfully, but these errors were encountered: