Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/hpack/files/
Date: Fri, 17 Mar 2023 12:34:22
Message-Id: 1679056452.20f19f011ca8103973a8264404f0613f2fcaf33a.arthurzam@gentoo
1 commit: 20f19f011ca8103973a8264404f0613f2fcaf33a
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Mar 17 12:15:24 2023 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 17 12:34:12 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f19f01
7
8 dev-python/hpack: remove unused patch(es)
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
12
13 .../files/hpack-3.0.0-hypothesis-healthcheck.patch | 21 ---------------------
14 1 file changed, 21 deletions(-)
15
16 diff --git a/dev-python/hpack/files/hpack-3.0.0-hypothesis-healthcheck.patch b/dev-python/hpack/files/hpack-3.0.0-hypothesis-healthcheck.patch
17 deleted file mode 100644
18 index aaabac3b3046..000000000000
19 --- a/dev-python/hpack/files/hpack-3.0.0-hypothesis-healthcheck.patch
20 +++ /dev/null
21 @@ -1,21 +0,0 @@
22 -diff --git a/test/conftest.py b/test/conftest.py
23 -index f5801da..c5e3c66 100644
24 ---- a/test/conftest.py
25 -+++ b/test/conftest.py
26 -@@ -4,11 +4,16 @@ import os
27 - import json
28 - import sys
29 -
30 -+from hypothesis import settings, HealthCheck
31 - from hypothesis.strategies import text
32 -
33 - if sys.version_info[0] == 2:
34 - from codecs import open
35 -
36 -+settings.register_profile("gentoo",
37 -+ suppress_health_check=(HealthCheck.too_slow,))
38 -+settings.load_profile("gentoo")
39 -+
40 - # We need to grab one text example from hypothesis to prime its cache.
41 - text().example()
42 -