summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2021-09-14 13:18:54 +0200
committerArthur Zamarin <arthurzam@gentoo.org>2021-09-14 16:56:56 +0300
commitb146111a9dd0deb8993a7f244dca6d59edc69e01 (patch)
tree99218f708a3e4b0505a0025bff4f59bc4eb67025 /dev-python/pytest
parentkde-plasma/plasma-workspace: Use FindFontconfig.cmake from KF-5.82 (diff)
downloadgentoo-b146111a9dd0deb8993a7f244dca6d59edc69e01.tar.gz
gentoo-b146111a9dd0deb8993a7f244dca6d59edc69e01.tar.bz2
gentoo-b146111a9dd0deb8993a7f244dca6d59edc69e01.zip
dev-python/pytest: remove unused patch
Package-Manager: Portage-3.0.22, Repoman-3.0.3 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22295 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/pytest')
-rw-r--r--dev-python/pytest/files/pytest-4.6.10-timeout.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-python/pytest/files/pytest-4.6.10-timeout.patch b/dev-python/pytest/files/pytest-4.6.10-timeout.patch
deleted file mode 100644
index 5bf9bcdbd8f5..000000000000
--- a/dev-python/pytest/files/pytest-4.6.10-timeout.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-diff --git a/src/_pytest/pytester.py b/src/_pytest/pytester.py
-index f1d739c99..72406b85d 100644
---- a/src/_pytest/pytester.py
-+++ b/src/_pytest/pytester.py
-@@ -1209,7 +1209,7 @@ class Testdir(object):
- args = self._getpytestargs() + args
- return self.run(*args, timeout=timeout)
-
-- def spawn_pytest(self, string, expect_timeout=10.0):
-+ def spawn_pytest(self, string, expect_timeout=60.0):
- """Run pytest using pexpect.
-
- This makes sure to use the right pytest and sets up the temporary
-@@ -1223,7 +1223,7 @@ class Testdir(object):
- cmd = "%s --basetemp=%s %s" % (invoke, basetemp, string)
- return self.spawn(cmd, expect_timeout=expect_timeout)
-
-- def spawn(self, cmd, expect_timeout=10.0):
-+ def spawn(self, cmd, expect_timeout=60.0):
- """Run a command using pexpect.
-
- The pexpect child is returned.
-diff --git a/testing/test_terminal.py b/testing/test_terminal.py
-index 1b2e46c7c..52ba80f46 100644
---- a/testing/test_terminal.py
-+++ b/testing/test_terminal.py
-@@ -138,7 +138,7 @@ class TestTerminal(object):
- """
- def test_1():
- import time
-- time.sleep(20)
-+ time.sleep(120)
- """
- )
- child = testdir.spawn_pytest("")