Skip to content

Commit

Permalink
Merge branch 'main' into feature/entry-points-by-group-and-name
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 24, 2021
2 parents dd8da47 + 61a265c commit bdce7ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Expand Up @@ -38,9 +38,9 @@ use_develop = False
deps =
ipython
commands =
python -m 'print("Simple discovery performance")'
python -c 'print("Simple discovery performance")'
python -m timeit -s 'import importlib_metadata' -- 'importlib_metadata.distribution("ipython")'
python -m 'print("Entry point discovery performance")'
python -c 'print("Entry point discovery performance")'
python -m timeit -s 'import importlib_metadata' -- 'importlib_metadata.entry_points()'
python -c 'print("Cached lookup performance")'
python -m timeit -s 'import importlib_metadata; importlib_metadata.distribution("ipython")' -- 'importlib_metadata.distribution("ipython")'
Expand Down

0 comments on commit bdce7ef

Please sign in to comment.