Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
language: julia

# avoids duplicate tests in PRs
branches:
only:
- master

os:
- linux
- osx
Expand All @@ -20,4 +25,6 @@ notifications:
email: false

after_success:
- julia -e 'using Pkg; cd(Pkg.dir("DistributionsAD")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
- if [[ $TRAVIS_JULIA_VERSION = 1.3 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())';
fi