Skip to content

Commit 7ffaf23

Browse files
authored
[minor] Actually, don't report test durations (#13571)
This gets in the way more than I thought and has not inspired anyone to make tests faster.
1 parent 9393fa1 commit 7ffaf23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test-data/unit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ significantly decrease performance.
178178

179179
To run tests with coverage:
180180

181-
python3 -m pytest --durations 100 --cov mypy --cov-config setup.cfg --cov-report=term-missing:skip-covered --cov-report=html
181+
python3 -m pytest --cov mypy --cov-config setup.cfg --cov-report=term-missing:skip-covered --cov-report=html
182182

183183

184184
Debugging

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ isolated_build = true
1616
description = run the test driver with {basepython}
1717
passenv = PYTEST_XDIST_WORKER_COUNT PROGRAMDATA PROGRAMFILES(X86)
1818
deps = -rtest-requirements.txt
19-
commands = python -m pytest --durations 100 {posargs}
19+
commands = python -m pytest {posargs}
2020

2121
[testenv:lint]
2222
description = check the code style

0 commit comments

Comments
 (0)