From 583287259fbb6d143696b418756ed68e6110cd2d Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Fri, 5 Sep 2014 16:07:10 -0400 Subject: [PATCH] - delete the file first here so this is deterministic --- test/perf/orm2010.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/perf/orm2010.py b/test/perf/orm2010.py index 8036ac268a..633315f244 100644 --- a/test/perf/orm2010.py +++ b/test/perf/orm2010.py @@ -126,6 +126,9 @@ def run_with_profile(runsnake=False, dump=False): import pstats filename = "orm2010.profile" + if os.path.exists("orm2010.profile"): + os.remove("orm2010.profile") + def status(msg): print(msg) -- 2.47.3