Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Ran Benita <ran@unusedvar.com>
15 lines
261 B
Python
15 lines
261 B
Python
# mypy: allow-untyped-defs
|
|
"""setUpModule is always called, even if all tests in the module are skipped"""
|
|
|
|
import unittest
|
|
|
|
|
|
def setUpModule():
|
|
assert 0
|
|
|
|
|
|
@unittest.skip("skip all tests")
|
|
class Base(unittest.TestCase):
|
|
def test(self):
|
|
assert 0
|