Find the source tree directory corresponding to the given result_images subdirectory.
(self, reldir)
| 273 | self.status = 'unknown' |
| 274 | |
| 275 | def get_dest_dir(self, reldir): |
| 276 | """ |
| 277 | Find the source tree directory corresponding to the given |
| 278 | result_images subdirectory. |
| 279 | """ |
| 280 | for baseline_dir in BASELINE_IMAGES: |
| 281 | path = self.source / baseline_dir / reldir |
| 282 | if path.is_dir(): |
| 283 | return path |
| 284 | |
| 285 | @property |
| 286 | def display(self): |