Skip to content

Commit

Permalink
disable specialfunction tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vchuravy committed May 14, 2021
1 parent bccbd01 commit c038fa4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ mybesselj1(z) = mybesselj(1, z)
end

## https://github.com/JuliaDiff/ChainRules.jl/tree/master/test/rulesets
include("packages/specialfunctions.jl")
if !Sys.iswindows()
include("packages/specialfunctions.jl")
end

@testset "DiffTest" begin
include("DiffTests.jl")
Expand Down

2 comments on commit c038fa4

@vchuravy
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/36742

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.0 -m "<description of version>" c038fa4c7f7898874f254194a2b13efd4140dc88
git push origin v0.5.0

Please sign in to comment.