1# Job Analysis 2 3A set of scripts that analyzes `jobs.json` to look for possible holes in our 4testing. 5 6## Requirements 7 8To run the scripts you need to have both `jq` and `mlr` installed on your 9machine. 10 11 $ sudo apt install jq miller 12 13## Running 14 15The Makefile contains common queries that can be run against the data. 16 17For example, to find all cpu_or_gpu_values that we currently don't run Perf 18tests on you would run: 19 20 $ make missing_perf_jobs 21 22See https://miller.readthedocs.io/en/latest/reference-dsl.html more details on 23the the kinds of queries that can be done against CSV files. 24