From be9d33b3550b91f2659eb3e7aa1db240aeb722e7 Mon Sep 17 00:00:00 2001 From: u214892 <u214892@sbb.ch> Date: Fri, 20 Sep 2019 08:56:07 +0200 Subject: [PATCH] #169 random guess --- benchmarks/profile_all_examples.py | 1 + benchmarks/run_all_examples.py | 1 + 2 files changed, 2 insertions(+) diff --git a/benchmarks/profile_all_examples.py b/benchmarks/profile_all_examples.py index 337009ac..53b40bfc 100644 --- a/benchmarks/profile_all_examples.py +++ b/benchmarks/profile_all_examples.py @@ -28,6 +28,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if not pkg_resources.resource_isdir('examples', entry) and entry.endswith(".py") and '__init__' not in entry + and 'demo.py' not in entry and 'DELETE' not in entry ]: profile('examples', entry) diff --git a/benchmarks/run_all_examples.py b/benchmarks/run_all_examples.py index 99e240ad..91bbc048 100644 --- a/benchmarks/run_all_examples.py +++ b/benchmarks/run_all_examples.py @@ -12,6 +12,7 @@ for entry in [entry for entry in importlib_resources.contents('examples') if not pkg_resources.resource_isdir('examples', entry) and entry.endswith(".py") and '__init__' not in entry + and 'demo.py' not in entry and 'DELETE' not in entry ]: with path('examples', entry) as file_in: -- GitLab