gnu: julia-ellipsisnotation: Adjust test suite for julia-1.6.

* gnu/packages/julia-xyz.scm (julia-ellipsisnotation)[arguments]: Add
phase to skip outdated test.
This commit is contained in:
Efraim Flashner 2021-07-29 13:54:12 +03:00
parent 8d787994e5
commit 0f15f77464
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1086,6 +1086,14 @@ (define-public julia-ellipsisnotation
(sha256
(base32 "0py46kxl702r8pw3v7x4cqllf7yc91b0dr7vb60xh2qi7d6y3jc7"))))
(build-system julia-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'adjust-test-suite
(lambda _
(substitute* "test/runtests.jl"
;; Seems to not play nicely with Julia-1.6.
((".*basic.jl.*") "")))))))
(propagated-inputs
`(("julia-arrayinterface" ,julia-arrayinterface)))
(home-page "https://github.com/ChrisRackauckas/EllipsisNotation.jl")