(worker_json: StrJSON)
| 216 | |
| 217 | @staticmethod |
| 218 | def from_json(worker_json: StrJSON) -> 'TestResult': |
| 219 | return json.loads(worker_json, object_hook=_decode_test_result) |
| 220 | |
| 221 | |
| 222 | class _EncodeTestResult(json.JSONEncoder): |
no test coverage detected