From 60005e750a87803ee51358f850c7883dc0c236e0 Mon Sep 17 00:00:00 2001
From: u214892 <u214892@sbb.ch>
Date: Thu, 19 Sep 2019 17:45:58 +0200
Subject: [PATCH] #169 random guess

---
 benchmarks/benchmark_all_examples.py | 2 +-
 benchmarks/profile_all_examples.py   | 2 --
 benchmarks/run_all_examples.py       | 2 --
 3 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/benchmarks/benchmark_all_examples.py b/benchmarks/benchmark_all_examples.py
index e45537a4..8af61ef4 100644
--- a/benchmarks/benchmark_all_examples.py
+++ b/benchmarks/benchmark_all_examples.py
@@ -14,7 +14,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
               ]:
     print("*****************************************************************")
     print("Benchmarking {}".format(entry))
diff --git a/benchmarks/profile_all_examples.py b/benchmarks/profile_all_examples.py
index 51a2b33d..337009ac 100644
--- a/benchmarks/profile_all_examples.py
+++ b/benchmarks/profile_all_examples.py
@@ -29,7 +29,5 @@ for entry in [entry for entry in importlib_resources.contents('examples') if
               and entry.endswith(".py")
               and '__init__' not in entry
               and 'DELETE' not in entry
-              # TODO temporarily excluded simple_example_1.py since it hangs in ci - no idea why
-              and 'simple_example_1.py' not in entry
               ]:
     profile('examples', entry)
diff --git a/benchmarks/run_all_examples.py b/benchmarks/run_all_examples.py
index 0d4b482c..99e240ad 100644
--- a/benchmarks/run_all_examples.py
+++ b/benchmarks/run_all_examples.py
@@ -13,8 +13,6 @@ for entry in [entry for entry in importlib_resources.contents('examples') if
               and entry.endswith(".py")
               and '__init__' not in entry
               and 'DELETE' not in entry
-              # TODO temporarily excluded simple_example_1.py since it hangs in ci - no idea why
-              and 'simple_example_1.py' not in entry
               ]:
     with path('examples', entry) as file_in:
         print("")
-- 
GitLab