We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In unittest tests are joined inside TestCase class. This is unittest practice, not pytest.
unittest
pytest
We should check, that all defs inside test files are in root, not inside class definition.
def
The text was updated successfully, but these errors were encountered:
@Melevir pytestmay have test classes as well,
class TestFeature: def setup_method(self):
Sorry, something went wrong.
This is not known as common pytest practice, so it makes sense to validate it.
Anyway, I'm not maintaining the project anymore. All questions and proposals are up to @korneevm :)
No branches or pull requests
In
unittest
tests are joined inside TestCase class. This isunittest
practice, notpytest
.We should check, that all
def
s inside test files are in root, not inside class definition.The text was updated successfully, but these errors were encountered: