From 9b56b8eb5b618db8e4b8934b27defacd19125ca3 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Tue, 9 Aug 2022 08:04:52 -0700 Subject: [PATCH 1/2] Add durations to pytest.ini --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 8dd417f6d..9529fcb38 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,4 +1,4 @@ [pytest] -addopts = -s -vv -x --reruns 5 --reruns-delay 10 +addopts = -s -vv -x --reruns 5 --reruns-delay 10 --durations=20 markers = slow: marks tests as slow (deselect with '-m "not slow"') From 9d3284d044985873ce0cbe04220210336a437645 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Tue, 9 Aug 2022 08:14:41 -0700 Subject: [PATCH 2/2] Change durations value --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 9529fcb38..7894a4e3c 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,4 +1,4 @@ [pytest] -addopts = -s -vv -x --reruns 5 --reruns-delay 10 --durations=20 +addopts = -s -vv -x --reruns 5 --reruns-delay 10 --durations=100 markers = slow: marks tests as slow (deselect with '-m "not slow"')