me
/
guix
Archived
1
0
Fork 0

gnu: julia-chainrulescore: Skip two tests.

* gnu/packages/julia-xyz.scm (julia-chainrulescore)[arguments]: Add a
phase to skip two tests.
master
Efraim Flashner 2022-12-10 18:13:28 +02:00
parent a5db747515
commit 9f980cdf52
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 9 additions and 0 deletions

View File

@ -760,6 +760,15 @@ execute forward-, reverse-, and mixed-mode primitives.")
(sha256
(base32 "1866xv30h1bi7f2m993nljzf58wwmv8zlgn6ffn9j3wckch1nfpb"))))
(build-system julia-build-system)
(arguments
(list
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'adjust-tests
(lambda _
(substitute* "test/differentials/composite.jl"
(("@test (.*construct)" _ test)
(string-append "@test_broken " test))))))))
(inputs ;required for tests
(list julia-benchmarktools
julia-staticarrays))