Pytest plugin to check your TestCase classes call super in setUp, tearDown, etc.
Project description
Pytest plugin to check your TestCase classes call super in setUp, tearDown, etc.
Features
This plugin checks all TestCase classes in your test suite to ensure that their setUp, tearDown, setUpClass, tearDownClass, and setUpTestData (Django extension) methods all call super(). You might care about this when you have extensions to these methods in your project specific base class that when skipped (by accidentally missing super()), cause subtle bugs.
About
I developed this feature in a closed source Nose plugin whilst working on the big Django project at YPlan. We had some custom enhancements and fixes on top of the Django test classes, but some TestCase classes didn’t call super() in e.g. setUp, which caused the tests to fail, or incorrectly pass, in rather subtle ways. This problem is exacerbated by Django’s setUp etc. doing magic around not requiring super() to be called. Our solution was to just ensure every TestCase always calls super() in those methods. This is a Pytest port of that plugin.
Installation
Install from pip with:
pip install pytest-super-check
Python 3.5 to 3.8 supported.
Usage
Pytest will automatically find and use the plugin. Test discovery will then blow up if any subclasses of unittest.TestCase are found that have setUp etc. methods that don’t call super().
You can disable the plugin by passing the options -p no:super_check to pytest.
History
2.1.0 (2019-12-19)
Update Python support to 3.5-3.8, as 3.4 has reached its end of life.
Converted setuptools metadata to configuration file. This meant removing the __version__ attribute from the package. If you want to inspect the installed version, use importlib.metadata.version("pytest-super-check") (docs / backport).
2.0.0 (2019-02-28)
Drop Python 2 support, only Python 3.4+ is supported now.
1.0.0 (2016-04-22)
First release on PyPI
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for pytest_super_check-2.1.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac6e742a9f9aad1ffb6f2c1965b5dd5a98759edc009f33c0acbcc9d00180b322 |
|
MD5 | 4952e88cb2aada8d89c7d8f48a8f1873 |
|
BLAKE2b-256 | 5db1d79eb5f88e0ba167f44f20752be34e3c1a3829c2125e4de92741af41619f |