test: move test_osbuild.py into module tests

Move the `test_osbuild.py` test into the module-test directory. This
test contains just a bunch of basic functionality tests for a selection
of osbuild modules. Hence, it can be run together with the other module
tests.
This commit is contained in:
David Rheinsberg 2020-05-28 08:58:34 +02:00
parent 3cf8b79e80
commit e8445da3d9
2 changed files with 10 additions and 29 deletions

View file

@ -1,3 +1,7 @@
#
# Basic tests for a collection of osbuild modules.
#
import json
import os
import unittest
@ -224,7 +228,3 @@ class TestDescriptions(unittest.TestCase):
self.assertEqual(len(lst), 1) # missing "filename"
lst = res[".pipeline.assembler.options.compression"]
self.assertEqual(len(lst), 1) # wrong compression method
if __name__ == "__main__":
unittest.main()