File size: 423 Bytes
d68c650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import unittest
import importlib


class TestDependencies(unittest.TestCase):
	def test_required_modules_installed(self):
		required_modules = [
			'numpy',
			'tensorflow',
			'numpy',
			't3f',
			'scipy',
			'h5py',
			'matplotlib',
			'pydot',
			'openvino',
		]

		for module in required_modules:
			with self.subTest(module = module):
				importlib.import_module(module)


if __name__ == '__main__':
	unittest.main()