mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-24 01:22:05 +08:00
process replay: fix updating refs (#24716)
fix updating refs
old-commit-hash: 90af436a12
This commit is contained in:
@@ -160,7 +160,7 @@ if __name__ == "__main__":
|
||||
tested_cars = set(args.whitelist_cars) - set(args.blacklist_cars)
|
||||
tested_cars = {c.upper() for c in tested_cars}
|
||||
|
||||
full_test = all(len(x) == 0 for x in (args.whitelist_procs, args.whitelist_cars, args.blacklist_procs, args.blacklist_cars, args.ignore_fields, args.ignore_msgs))
|
||||
full_test = (tested_procs == all_procs) and (tested_cars == all_cars) and all(len(x) == 0 for x in (args.ignore_fields, args.ignore_msgs))
|
||||
upload = args.update_refs or args.upload_only
|
||||
os.makedirs(os.path.dirname(FAKEDATA), exist_ok=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user