Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytest / testing / example_scripts / unittest / test_setup_skip_module.py
Size: Mime:
"""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