From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1126895-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id F208C138334
	for <garchives@archives.gentoo.org>; Mon,  2 Dec 2019 19:27:32 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4D415E086E;
	Mon,  2 Dec 2019 19:27:32 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 3664EE086E
	for <gentoo-commits@lists.gentoo.org>; Mon,  2 Dec 2019 19:27:32 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 1021734D6DD
	for <gentoo-commits@lists.gentoo.org>; Mon,  2 Dec 2019 19:27:31 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 38AFA8A8
	for <gentoo-commits@lists.gentoo.org>; Mon,  2 Dec 2019 19:27:29 +0000 (UTC)
From: "Aaron Bauman" <bman@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" <bman@gentoo.org>
Message-ID: <1575314843.b49e07aa377bf41adee64cf3a0c59d57aba929ec.bman@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-mock/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/pytest-mock/pytest-mock-1.11.2.ebuild
X-VCS-Directories: dev-python/pytest-mock/
X-VCS-Committer: bman
X-VCS-Committer-Name: Aaron Bauman
X-VCS-Revision: b49e07aa377bf41adee64cf3a0c59d57aba929ec
X-VCS-Branch: master
Date: Mon,  2 Dec 2019 19:27:29 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 8b49b348-da5e-460e-bd6c-50d2048d0bbf
X-Archives-Hash: 5a7de4922a774060fb904f1ee19eb9ef

commit:     b49e07aa377bf41adee64cf3a0c59d57aba929ec
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  2 19:26:58 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Dec  2 19:27:23 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b49e07aa

dev-python/pytest-mock: exclude two additional introspection tests

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 dev-python/pytest-mock/pytest-mock-1.11.2.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-python/pytest-mock/pytest-mock-1.11.2.ebuild b/dev-python/pytest-mock/pytest-mock-1.11.2.ebuild
index 9abdcee85b1..93d187c9272 100644
--- a/dev-python/pytest-mock/pytest-mock-1.11.2.ebuild
+++ b/dev-python/pytest-mock/pytest-mock-1.11.2.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
 
 inherit distutils-r1
@@ -29,6 +30,8 @@ src_prepare() {
 	sed -e 's|^\(    def \)\(test_failure_message_with_no_name(\)|\1_\2|' \
 		-e 's|^\(    def \)\(test_failure_message_with_name(\)|\1_\2|' \
 		-e 's|^\(def \)\(test_detailed_introspection(\)|\1_\2|' \
+		-e 's|^\(def \)\(test_assert_called_args_with_introspection(\)|\1_\2|' \
+		-e 's|^\(def \)\(test_assert_called_kwargs_with_introspection(\)|\1_\2|' \
 		-i tests/test_pytest_mock.py || die
 	distutils-r1_src_prepare
 }