Save confs to `disc_conf_file()`
(root, args)
| 727 | return os.path.join(root, "scripts", "ci", ".disc_conf") |
| 728 | |
| 729 | def save_args_to_cache(root, args): |
| 730 | """Save confs to `disc_conf_file()`""" |
| 731 | with open(disc_conf_file(root), "wb") as f: |
| 732 | pickle.dump(args, f) |
| 733 | |
| 734 | def restore_args_from_cache(root, args): |
| 735 | """Restore confs from `disc_conf_file()`""" |
no test coverage detected