()
| 72 | |
| 73 | @pytest.fixture(scope='session') |
| 74 | def init_base_world(): |
| 75 | with open(os.path.join(CONFIG_DIR, 'default.yml')) as c: |
| 76 | BaseWorld.apply_config('main', yaml.load(c, Loader=yaml.FullLoader)) |
| 77 | BaseWorld.apply_config('agents', BaseWorld.strip_yml(os.path.join(CONFIG_DIR, 'agents.yml'))[0]) |
| 78 | BaseWorld.apply_config('payloads', BaseWorld.strip_yml(os.path.join(CONFIG_DIR, 'payloads.yml'))[0]) |
| 79 | |
| 80 | |
| 81 | @pytest.fixture |
nothing calls this directly
no test coverage detected