Skip to content

Commit 174d5fe

Browse files
authored
Disallow nightly failures, add coverage submission
1 parent 81e5728 commit 174d5fe

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

.travis.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
language: julia
22
os:
3-
- linux
4-
- osx
3+
- linux
4+
- osx
55
julia:
6-
- 0.4
7-
- 0.5
8-
- nightly
6+
- 0.4
7+
- 0.5
8+
- nightly
99
notifications:
1010
email: false
11-
12-
# Allow for failures when it comes to `nightly` builds not to block the patches
13-
# that pass in supported versions.
14-
matrix:
15-
fast_finish: true
16-
allow_failures:
17-
- julia: nightly
11+
#script: # the default script is equivalent to the following
12+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
13+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Polynomials"); Pkg.test("Polynomials"; coverage=true)';
14+
after_success:
15+
- julia -e 'cd(Pkg.dir("Polynomials")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

0 commit comments

Comments
 (0)