From ac215e9cff87022112e590d89ed7c891dbc6cee0 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Mon, 1 Aug 2016 13:50:59 +0200 Subject: [PATCH 1/3] terminal: dont pretend to know the deselection reason this addresses #1372 - we pretend we know the deselection reason from internal plugins and ignore 3rd party/local reasons --- _pytest/terminal.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/_pytest/terminal.py b/_pytest/terminal.py index 7db0fda7473..863e69ce80b 100644 --- a/_pytest/terminal.py +++ b/_pytest/terminal.py @@ -512,16 +512,8 @@ def summary_stats(self): def summary_deselected(self): if 'deselected' in self.stats: - l = [] - k = self.config.option.keyword - if k: - l.append("-k%s" % k) - m = self.config.option.markexpr - if m: - l.append("-m %r" % m) - if l: - self.write_sep("=", "%d tests deselected by %r" % ( - len(self.stats['deselected']), " ".join(l)), bold=True) + self.write_sep("=", "%d tests deselected" % ( + len(self.stats['deselected'])), bold=True) def repr_pythonversion(v=None): if v is None: From 48f4e18280dfd87b4d8503f621a3f9514ffb0bf2 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 2 Aug 2016 10:43:25 +0200 Subject: [PATCH 2/3] fix deselect tests to match reason removal --- testing/test_terminal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/test_terminal.py b/testing/test_terminal.py index 51e62f3a0fb..84c5bc4ac49 100644 --- a/testing/test_terminal.py +++ b/testing/test_terminal.py @@ -384,7 +384,7 @@ def test_three(): result = testdir.runpytest("-k", "test_two:", testpath) result.stdout.fnmatch_lines([ "*test_deselected.py ..", - "=* 1 test*deselected by*test_two:*=", + "=* 1 test*deselected *=", ]) assert result.ret == 0 From 1c8fe962f3af4c1e7b702fb8fb5e04f8d83d7d32 Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Tue, 2 Aug 2016 10:51:10 +0200 Subject: [PATCH 3/3] add changelog entry --- CHANGELOG.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d4e5dfa603b..aacd0b33908 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -256,7 +256,10 @@ time or change existing behaviors in order to make them less surprising/more use * Add stderr write for ``pytest.exit(msg)`` during startup. Previously the message was never shown. Thanks `@BeyondEvil`_ for reporting `#1210`_. Thanks to `@JonathonSonesen`_ and - `@tomviner`_ for PR. + `@tomviner`_ for the PR. + +* fix `#1372`_ no longer display the incorrect test deselection reason, + thanks `@ronnypfannschmidt`_ for the PR. * @@ -308,6 +311,7 @@ time or change existing behaviors in order to make them less surprising/more use .. _#1210: https://github.com/pytest-dev/pytest/issues/1210 .. _#1235: https://github.com/pytest-dev/pytest/issues/1235 .. _#1351: https://github.com/pytest-dev/pytest/issues/1351 +.. _#1372: https://github.com/pytest-dev/pytest/issues/1372 .. _#1421: https://github.com/pytest-dev/pytest/issues/1421 .. _#1426: https://github.com/pytest-dev/pytest/issues/1426 .. _#1428: https://github.com/pytest-dev/pytest/pull/1428