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:
parent
3cf8b79e80
commit
e8445da3d9
2 changed files with 10 additions and 29 deletions
|
|
@ -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()
|
||||
Loading…
Add table
Add a link
Reference in a new issue