Skip to content

Commit 9afd2d3

Browse files
authored
Merge pull request #33 from TuringLang/devmotion-patch-2
Avoid duplicate tests and code coverage tests
2 parents 77123bb + a9eb725 commit 9afd2d3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Documentation: http://docs.travis-ci.com/user/languages/julia/
22
language: julia
3+
branches:
4+
only:
5+
- master
36
os:
47
- linux
58
- osx
@@ -16,4 +19,6 @@ matrix:
1619
notifications:
1720
email: false
1821
after_success:
19-
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
22+
- if [[ $TRAVIS_JULIA_VERSION = 1.3 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
23+
julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())';
24+
fi

0 commit comments

Comments
 (0)