Ben Nemec dfcd983ee3 Add functional tests
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
2019-12-11 10:26:01 +00:00

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