mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 21:49:34 -05:00
gnu: julia-chainrulescore: Skip two tests.
* gnu/packages/julia-xyz.scm (julia-chainrulescore)[arguments]: Add a phase to skip two tests.
This commit is contained in:
parent
a5db747515
commit
9f980cdf52
1 changed files with 9 additions and 0 deletions
|
@ -760,6 +760,15 @@ (define-public julia-chainrulescore
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1866xv30h1bi7f2m993nljzf58wwmv8zlgn6ffn9j3wckch1nfpb"))))
|
(base32 "1866xv30h1bi7f2m993nljzf58wwmv8zlgn6ffn9j3wckch1nfpb"))))
|
||||||
(build-system julia-build-system)
|
(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
|
(inputs ;required for tests
|
||||||
(list julia-benchmarktools
|
(list julia-benchmarktools
|
||||||
julia-staticarrays))
|
julia-staticarrays))
|
||||||
|
|
Loading…
Reference in a new issue