diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2020-12-09 17:39:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-09 16:39:57 -0600 |
| commit | b450df1d09cad3018abd51065d5dbba9064ca67c (patch) | |
| tree | 08fcda4382ebd21a1f296f342135238c50e39c5c | |
| parent | d6274d695e01de7c6ce073ce1d0899992090621e (diff) | |
| download | cryptography-b450df1d09cad3018abd51065d5dbba9064ca67c.tar.gz | |
print 10 slowest tests to help us keep runtimes down (#5622)
| -rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,7 +18,7 @@ commands = # We use parallel mode and then combine here so that coverage.py will take # the paths like .tox/py38/lib/python3.8/site-packages/cryptography/__init__.py # and collapse them into src/cryptography/__init__.py. - coverage run --parallel-mode -m pytest --capture=no --strict {posargs} + coverage run --parallel-mode -m pytest --capture=no --strict --durations=10 {posargs} coverage combine coverage report -m @@ -28,7 +28,7 @@ commands = basepython = pypy3 commands = pip list - pytest --capture=no --strict {posargs} + pytest --capture=no --strict --durations=10 {posargs} [testenv:docs] extras = |
