V
def description():
while True:
yield f'alias:'
yield f'sys'
yield f'version'
c=iter(description())
b=[['Brand X', '98', 10], ['Brand Y', 'NT', 10], ['Brand Y', '2000', 15]]
@pytest.mark.parametrize(["name", "windows","version"], b, ids=lambda x: f'{next(c)}:{x}')
def test(self, name, windows, version,):
assert name!=windows



