Skip to content

Commit

Permalink
Fix perf tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 21, 2021
1 parent c8d90a2 commit 61a265c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
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 61a265c

Please sign in to comment.