Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
pass
def create(self) -> VUnit:
"""Override this function to specify custom instantiation of VUnit."""
return VUnit.from_argv()
def handle_library(self, logical_name: str, vu_lib: Library):
"""Override this to customize each library, e.g. with additional simulator options."""
pass
def main(self, vu: VUnit):
"""Override this for final parametrization of the :class:`~vunit.ui.VUnit` instance, or for custom invocation of VUnit."""
vu.main()
class VUnitRunner(VUnitHooks):
"""The default runner which will be used if no :file:`vunit_runner.py` is specified."""
pass