guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: conan: Disable more flaky tests.


From: guix-commits
Subject: 02/02: gnu: conan: Disable more flaky tests.
Date: Fri, 31 Mar 2023 10:29:55 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 47ea688fd27d0ce0c8ea5481f1f94d0ebc3e37eb
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Fri Mar 31 10:21:52 2023 -0400

    gnu: conan: Disable more flaky tests.
    
    * gnu/packages/package-management.scm (conan) [arguments]: Run test suite
    verbosely.  Skip the test_toolchain and test_list tests.
---
 gnu/packages/package-management.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index 43b6af1d15..29cb481862 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -1209,7 +1209,7 @@ tools_locations = {
                 (setenv "CONFIG_SHELL" (which "sh"))
                 (setenv "PATH" (string-append (getenv "PATH") ":"
                                               #$output "/bin"))
-                (invoke "python" "-m" "pytest"
+                (invoke "python" "-m" "pytest" "-vv"
                         "-n" (number->string (parallel-job-count))
                         "-m" "not slow"
                         ;; Disable problematic tests.
@@ -1222,6 +1222,12 @@ tools_locations = {
                          ;; expected by the following test.
                          "and not pkg_config_path "
                          "and not compare " ;caused by newer node-semver?
+                         ;; This test hard-codes a compiler version.
+                         "and not test_toolchain "
+                         ;; The 'test_list' tests may fail
+                         ;; non-deterministically (see:
+                         ;; https://github.com/conan-io/conan/issues/13583).
+                         "and not test_list "
                          ;; These tests fail when Autoconf attempt to load a
                          ;; shared library in the same directory (see:
                          ;; https://github.com/conan-io/conan/issues/13577).



reply via email to

[Prev in Thread] Current Thread [Next in Thread]