codespeed
codespeed copied to clipboard
Default Executables
It'd be great to be able to set defaults for whether executables are checked or not in the timeline page. I tried to look into this, but it looks like the checking is done in javascript, e.g. not as easy to change on the server-side as I thought. What would be a good way to go about coding this functionality in?
Default executables in the timeline view is more complex compared to changes view because it is multi-select. But there is something similar already for the comparison view: https://github.com/tobami/codespeed/blob/master/codespeed/settings.py#L61 https://github.com/tobami/codespeed/blob/master/codespeed/templates/codespeed/comparison.html#L98
COMP_EXECUTABLES is a combination of executable and revision. For timeline we only need executable, so it should be easier.
If you need any help just post in this issue.