from pytest import fixture from jogai import videogame as vg @fixture() def prepare_videogame(): vg.init() vg.prepare() yield vg.quit()