Move valgrind files back to where fixtures expect them
(node, subdir)
| 2673 | |
| 2674 | |
| 2675 | def restore_valgrind(node, subdir): |
| 2676 | """Move valgrind files back to where fixtures expect them""" |
| 2677 | for f in os.listdir(subdir): |
| 2678 | if f.startswith('valgrind-errors.'): |
| 2679 | shutil.move(os.path.join(subdir, f), |
| 2680 | node.daemon.opts.get("lightning-dir")) |
| 2681 | |
| 2682 | |
| 2683 | @unittest.skipIf(env('COMPAT') != 1, "Upgrade code requires COMPAT_V073") |
no test coverage detected