Spaces:
Running
Running
File size: 174 Bytes
dd39c08 |
1 2 3 4 5 6 7 8 9 10 |
import bgym
import pytest
def test_classes():
bgym.EnvArgs(task_name="something")
bgym.HighLevelActionSet()
with pytest.raises(TypeError):
bgym.Agent()
|