From 2a9398dcddcd55066d961d6a204856ba0c5f9c30 Mon Sep 17 00:00:00 2001 From: Zachary Sunberg Date: Fri, 25 Mar 2016 14:54:46 -0700 Subject: [PATCH] commit test to see if it can be imported --- .travis.yml | 10 ++++++++++ test/runtests.jl | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 .travis.yml create mode 100644 test/runtests.jl diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..ee8cecd1 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: julia +os: + - linux +julia: + - release +notifications: + email: false +script: + - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.test("POMDPs")' diff --git a/test/runtests.jl b/test/runtests.jl new file mode 100644 index 00000000..91a5b399 --- /dev/null +++ b/test/runtests.jl @@ -0,0 +1,2 @@ +# just test to see if the import works +import POMDPs