build: Make it possible to disable the tests

This commit is contained in:
Sebastian Huber 2019-02-18 10:39:50 +01:00
parent 3e483fb445
commit 88f21b5e2a

View File

@ -499,6 +499,8 @@ class Builder(builder.ModuleManager):
# #
# Tests # Tests
# #
tests = []
if 'tests' in self.data:
tests = self.data['tests'] tests = self.data['tests']
for testName in sorted(tests): for testName in sorted(tests):
test = self.data['tests'][testName]['all'] test = self.data['tests'][testName]['all']