diff --git a/.travis.yml b/.travis.yml index b2873fa..0f64fab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,9 @@ os: - linux - osx julia: - - 0.6 + - 0.7 + - 1.0 + - 1.1 # - nightly notifications: email: false @@ -18,20 +20,20 @@ git: # - julia: nightly # uncomment and modify the following lines to manually install system packages -addons: - apt: # apt-get for linux - packages: - - gfortran +# addons: + # apt: # apt-get for linux + # packages: + # - gfortran # before_install: # - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew update; fi # - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew install gcc; fi ## uncomment the following lines to override the default test script -script: - - julia -e 'Pkg.clone(pwd()); Pkg.build("NeighbourLists"); Pkg.test("NeighbourLists"; coverage=true)' +# script: +# - julia -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("NeighbourLists"); Pkg.test("NeighbourLists"; coverage=true)' after_success: # push coverage results to Coveralls - - julia -e 'cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' + # - julia -e 'using Pkg; cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())' # push coverage results to Codecov - - julia -e 'cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' + # - julia -e 'using Pkg; cd(Pkg.dir("NeighbourLists")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' diff --git a/test/REQUIRE b/test/REQUIRE index 6f33e38..061b7c1 100644 --- a/test/REQUIRE +++ b/test/REQUIRE @@ -1,2 +1,4 @@ NearestNeighbors +Distances ForwardDiff +Printf