Skip to content
Snippets Groups Projects
Forked from Flatland / Flatland
2283 commits behind the upstream repository.
test_player.py 257 B
from examples.play_model import main


# from examples.tkplay import tkmain


def test_main():
    main(render=True, n_steps=20, n_trials=2, sGL="PIL")
    main(render=True, n_steps=20, n_trials=2, sGL="PILSVG")


if __name__ == "__main__":
    test_main()