Gentoo Archives: gentoo-commits

From: Ionen Wolkens <ionen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/maturin/
Date: Wed, 01 Dec 2021 10:06:01
Message-Id: 1638353039.ec624be3ead217db99e5496bd719fcf3f8a1115a.ionen@gentoo
1 commit: ec624be3ead217db99e5496bd719fcf3f8a1115a
2 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 1 09:48:34 2021 +0000
4 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 1 10:03:59 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec624be3
7
8 dev-util/maturin: limit tests to 1 thread
9
10 Tentatively closing #825242 to see if it the issue resurfaces,
11 can't reproduce anymore (so far) with 1 thread and tests aren't
12 overly long (building tests will still uses normal thread count).
13
14 Will revisit if upstream finds a solution.
15
16 Closes: https://bugs.gentoo.org/825242
17 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>
18
19 dev-util/maturin/maturin-0.11.5-r1.ebuild | 3 ++-
20 dev-util/maturin/maturin-0.12.3-r1.ebuild | 3 ++-
21 2 files changed, 4 insertions(+), 2 deletions(-)
22
23 diff --git a/dev-util/maturin/maturin-0.11.5-r1.ebuild b/dev-util/maturin/maturin-0.11.5-r1.ebuild
24 index b2457d9b7798..fad51fc2c494 100644
25 --- a/dev-util/maturin/maturin-0.11.5-r1.ebuild
26 +++ b/dev-util/maturin/maturin-0.11.5-r1.ebuild
27 @@ -301,7 +301,8 @@ python_test() {
28 local -x PIP_CONFIG_FILE=${T}/pip.conf
29 local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1
30
31 - cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock
32 + cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock \
33 + --test-threads 1 #825242
34 }
35
36 python_install_all() {
37
38 diff --git a/dev-util/maturin/maturin-0.12.3-r1.ebuild b/dev-util/maturin/maturin-0.12.3-r1.ebuild
39 index bbced0e389c3..936b151e7a89 100644
40 --- a/dev-util/maturin/maturin-0.12.3-r1.ebuild
41 +++ b/dev-util/maturin/maturin-0.12.3-r1.ebuild
42 @@ -336,7 +336,8 @@ python_test() {
43 local -x PIP_CONFIG_FILE=${T}/pip.conf
44 local -x VIRTUALENV_SYSTEM_SITE_PACKAGES=1
45
46 - cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock
47 + cargo_src_test -- --skip locked_doesnt_build_without_cargo_lock \
48 + --test-threads 1 #825242
49 }
50
51 python_install_all() {