![Ben Nemec](/assets/img/avatar_default.png)
These add some coverage to functionality not covered by the regular unit tests, but I think they can't be run in the gate because they use sudo. Change-Id: Ic62c95b83f68f94328deb00227b7eabf249ce898
9 lines
214 B
Python
9 lines
214 B
Python
import os.path
|
|
|
|
|
|
def load_tests(loader, tests, pattern):
|
|
this_dir = os.path.dirname(__file__)
|
|
new_tests = loader.discover(start_dir=this_dir, pattern=pattern)
|
|
tests.addTests(new_tests)
|
|
return tests
|