Skip to content

Commit

Permalink
Add Random to Project.toml [extras]
Browse files Browse the repository at this point in the history
We're using it in the tests but were not declaring it as a test
dependency. This seems to be the cause of the current Julia nightly
failures on CI.
  • Loading branch information
ararslan committed Jun 13, 2019
1 parent 03b7d10 commit 76ea4b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ julia = "^1.0"

[extras]
FDM = "e25cca7e-83ef-51fa-be6c-dfe2a3123128"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "FDM"]
test = ["FDM", "Random", "Test"]

0 comments on commit 76ea4b8

Please sign in to comment.