Skip to content

Commit 76ea4b8

Browse files
committed
Add Random to Project.toml [extras]
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.
1 parent 03b7d10 commit 76ea4b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ julia = "^1.0"
1515

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

2021
[targets]
21-
test = ["Test", "FDM"]
22+
test = ["FDM", "Random", "Test"]

0 commit comments

Comments
 (0)