Skip to content

Commit

Permalink
Seed the tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
eljungsk committed Jul 3, 2019
1 parent 7dbee23 commit 095af08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ NearestNeighbors = "b8a86587-4115-5ab1-83bc-aa920d37bbce"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[targets]
test = ["Test"]
test = ["Test","Random"]
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using ScatteredInterpolation
using ScatteredInterpolation, Random

Random.seed!(2)

if VERSION < v"0.7-"
using Base.Test
Expand Down

2 comments on commit 095af08

@eljungsk
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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 created: JuliaRegistries/General/1755

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.3 -m "<description of version>" 095af08fe34748f1acc3f73d53da474d3562fac2
git push origin v0.3.3

Please sign in to comment.