How to use the vermin.Config function in vermin

To help you get started, we’ve selected a few vermin examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github netromdk / vermin / tests / exclusions.py View on Github external
def __init__(self, methodName):
    super(VerminExclusionsTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / general.py View on Github external
def __init__(self, methodName):
    super(VerminGeneralTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / constants.py View on Github external
def __init__(self, methodName):
    super(VerminConstantMemberTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / arguments.py View on Github external
def __init__(self, methodName):
    super(VerminArgumentsTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / lax_mode.py View on Github external
def __init__(self, methodName):
    super(VerminLaxModeTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / function.py View on Github external
def __init__(self, methodName):
    super(VerminFunctionMemberTests, self).__init__(methodName)
    self.config = Config.get()
github netromdk / vermin / tests / class.py View on Github external
def __init__(self, methodName):
    super(VerminClassMemberTests, self).__init__(methodName)
    self.config = Config.get()