Skip to content
Snippets Groups Projects
Commit 60005e75 authored by u214892's avatar u214892
Browse files

#169 random guess

parent 8cf3013c
No related branches found
No related tags found
No related merge requests found
......@@ -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))
......
......@@ -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)
......@@ -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("")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment