some form of testing
This commit is contained in:
parent
d442dd8c5b
commit
18502158f0
|
@ -10,5 +10,6 @@ notifications:
|
||||||
email: false
|
email: false
|
||||||
# uncomment the following lines to override the default test script
|
# uncomment the following lines to override the default test script
|
||||||
#script:
|
#script:
|
||||||
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
||||||
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
|
- julia -e 'Pkg.clone("https://github.com/MikeInnes/Flow.jl")'
|
||||||
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("Flux"); Pkg.test("Flux"; coverage=true)'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
using Flux
|
using Flux, Juno
|
||||||
|
|
||||||
# Flux aims to provide high-level APIs that work well across backends, but in
|
# Flux aims to provide high-level APIs that work well across backends, but in
|
||||||
# some cases you may want to take advantage of features specific to a given
|
# some cases you may want to take advantage of features specific to a given
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
using Flux
|
using Flux
|
||||||
using Base.Test
|
using Base.Test
|
||||||
|
|
||||||
# write your own tests here
|
module MNISTBasic
|
||||||
@test 1 == 1
|
include("../examples/MNIST.jl")
|
||||||
|
end
|
||||||
|
|
||||||
|
module MNISTConv
|
||||||
|
include("../examples/mnist-conv.jl")
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in New Issue