[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: psautohint: Disable flaky tests.
From: |
guix-commits |
Subject: |
branch master updated: gnu: psautohint: Disable flaky tests. |
Date: |
Fri, 29 Sep 2023 17:10:45 -0400 |
This is an automated email from the git hooks/post-receive script.
nckx pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new b268842ec4 gnu: psautohint: Disable flaky tests.
b268842ec4 is described below
commit b268842ec4808f5030f3bda95f52ff39dd88e3ad
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Tue Sep 26 23:08:44 2023 +0800
gnu: psautohint: Disable flaky tests.
* gnu/packages/fontutils.scm (psautohint)[arguments]: Disable tests
test_hashmap_no_version and test_hashmap_old_version.
Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
---
gnu/packages/fontutils.scm | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm
index 18697cd821..c781ae2baf 100644
--- a/gnu/packages/fontutils.scm
+++ b/gnu/packages/fontutils.scm
@@ -789,9 +789,18 @@ suite of the @code{psautohint} package.")
(build-system pyproject-build-system)
(arguments
(list
- ;; The CJKSparseVar.subset.hinted.otf test fails with slightly different
- ;; output caused by the newer fonttools version used in Guix.
- #:test-flags #~(list "-k" "not CJKSparseVar.subset.hinted.otf")
+ #:test-flags
+ #~(list "-k"
+ (string-join
+ '(;; The CJKSparseVar.subset.hinted.otf test fails with slightly
+ ;; different output caused by the newer fonttools version used
+ ;; in Guix.
+ "not CJKSparseVar.subset.hinted.otf"
+ ;; These tests fails underministically, See also:
+ ;; https://github.com/adobe-type-tools/afdko/issues/1678
+ "not test_hashmap_no_version"
+ "not test_hashmap_old_version")
+ " and "))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'copy-font-data
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: psautohint: Disable flaky tests.,
guix-commits <=