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