(self)
| 9 | class TestNvidia(unittest.TestCase): |
| 10 | @gpu_test |
| 11 | def test_system_management_interface(self): |
| 12 | smi = subprocess.Popen(['nvidia-smi'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) |
| 13 | smi.communicate() |
| 14 | self.assertEqual(0, smi.returncode) |
nothing calls this directly
no outgoing calls
no test coverage detected