From 53187a3ef23f20cffe38bc9eec2bb21eb16d1058 Mon Sep 17 00:00:00 2001 From: Rostyslav Misiura Date: Tue, 24 Oct 2023 18:38:29 +0300 Subject: [PATCH 1/3] feat: Added warning ignoring argument --- python-pytest.el | 1 + 1 file changed, 1 insertion(+) diff --git a/python-pytest.el b/python-pytest.el index 735efb6..0f79137 100644 --- a/python-pytest.el +++ b/python-pytest.el @@ -125,6 +125,7 @@ When non-nil only ‘test_foo()’ will match, and nothing else." [("-c" "color" "--color") ("-q" "quiet" "--quiet") ("-s" "no output capture" "--capture=no") + ("-w" "disable warnings" "-W ignore") (python-pytest:-v)]] ["Selection, filtering, ordering" [(python-pytest:-k) From e8ca6d30e9a8f31d7f30bec48f6c9ce1d0d976a6 Mon Sep 17 00:00:00 2001 From: wouter bolsterlee Date: Thu, 2 Nov 2023 10:32:55 +0100 Subject: [PATCH 2/3] Update python-pytest.el --- python-pytest.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-pytest.el b/python-pytest.el index 0f79137..054b10f 100644 --- a/python-pytest.el +++ b/python-pytest.el @@ -125,7 +125,7 @@ When non-nil only ‘test_foo()’ will match, and nothing else." [("-c" "color" "--color") ("-q" "quiet" "--quiet") ("-s" "no output capture" "--capture=no") - ("-w" "disable warnings" "-W ignore") + ("-W" "ignore warnings" "-W ignore") (python-pytest:-v)]] ["Selection, filtering, ordering" [(python-pytest:-k) From e2b7ecd5d1eb7cc147fcc38c4b8b1d031dfc84cd Mon Sep 17 00:00:00 2001 From: wouter bolsterlee Date: Thu, 2 Nov 2023 10:35:25 +0100 Subject: [PATCH 3/3] Update python-pytest.el --- python-pytest.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-pytest.el b/python-pytest.el index 054b10f..be32e79 100644 --- a/python-pytest.el +++ b/python-pytest.el @@ -125,8 +125,8 @@ When non-nil only ‘test_foo()’ will match, and nothing else." [("-c" "color" "--color") ("-q" "quiet" "--quiet") ("-s" "no output capture" "--capture=no") - ("-W" "ignore warnings" "-W ignore") - (python-pytest:-v)]] + (python-pytest:-v) + ("-W" "ignore warnings" "-W ignore")]] ["Selection, filtering, ordering" [(python-pytest:-k) (python-pytest:-m)