From 856f47adc8c8e07e310e1bda6618105e69510631 Mon Sep 17 00:00:00 2001 From: Tianhao Date: Wed, 1 Jul 2020 16:31:14 -0400 Subject: [PATCH] add mnist test dependencies --- Project.toml | 3 ++- test/runtests.jl | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 3c5d234a..d64f8d3e 100644 --- a/Project.toml +++ b/Project.toml @@ -19,6 +19,7 @@ SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13" [extras] Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" +JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819" [targets] -test = ["Test", "Flux"] +test = ["Test", "Flux", "JLD2"] diff --git a/test/runtests.jl b/test/runtests.jl index d23489d3..073b8fa9 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,3 @@ -include("mnist_1000.jl") include("identity_network.jl") include("relu_network.jl") include("inactive_relus.jl") @@ -7,3 +6,4 @@ if Base.find_package("Flux") != nothing end include("complements.jl") include("splitting.jl") +include("mnist_1000.jl") \ No newline at end of file