A few more tweaks to scripts

- Changed `make summary` to show a one line summary
- Added `make lfs.csv` rule, which is useful for finding more info with
  other scripts
- Fixed small issue in ./scripts/summary.py
- Added *.ci (callgraph) and *.csv (script output) to CI
This commit is contained in:
Christopher Haster
2022-03-11 12:58:06 -06:00
parent 55b3c538d5
commit 7ea2b515aa
3 changed files with 15 additions and 13 deletions

View File

@@ -135,17 +135,6 @@ def main(**args):
except FileNotFoundError:
pass
if args.get('all_fields'):
fields = FIELDS
elif args.get('fields') is not None:
fields_dict = {field.name: field for field in FIELDS}
fields = [fields_dict[f] for f in args['fields']]
else:
fields = []
for field in FIELDS:
if any(field.name in result for result in prev_results.values()):
fields.append(field)
prev_total = {}
for result in prev_results.values():
for field in fields: