This is what we write to metadata.json. You can subclass extend this to add more details for specific games.
(self)
| 221 | f"git branch {branch_name}", |
| 222 | f"git checkout {branch_name}", |
| 223 | 'git config --global user.email "player@codeclash.com"', |
| 224 | 'git config --global user.name "Player"', |
| 225 | "git config --global commit.gpgsign false", |
| 226 | ]: |
| 227 | assert_zero_exit_code(environment.execute(cmd), logger=self.logger) |
| 228 | return environment |
| 229 | |
| 230 | def get_metadata(self) -> dict: |
nothing calls this directly
no outgoing calls
no test coverage detected