__init__.py 318 B

1234567891011121314
  1. # pylint: skip-file
  2. import importlib
  3. import qubes.plugins
  4. import qubes.tests
  5. __all__ = qubes.plugins.load(__file__)
  6. def load_tests(loader, tests, pattern):
  7. for name in __all__:
  8. mod = importlib.import_module('.' + name, __name__)
  9. tests.addTests(loader.loadTestsFromModule(mod))
  10. return tests