Skip to content

Commit

Permalink
Add missing test dependencies to SparseArrays Project.toml (#29354)
Browse files Browse the repository at this point in the history
The tests use InteractiveUtils but it is not listed as a test dependency
in the SparseArrays Project.toml file. This is causing SparseArrays to fail
its tests when run on NewPkgEval, which means every package that uses
SparseArrays gets their tests skipped.
  • Loading branch information
ararslan authored Sep 25, 2018
1 parent 2a35981 commit f2ad009
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion stdlib/SparseArrays/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

[targets]
test = ["Test"]
test = ["Test", "InteractiveUtils"]

0 comments on commit f2ad009

Please sign in to comment.