Skip to content

Commit b3dae7d

Browse files
committed
add travis, Codecov
1 parent 005437c commit b3dae7d

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.travis.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- "0.7"
8+
- "1.0"
9+
- "1.1"
10+
- nightly
11+
matrix:
12+
allow_failures:
13+
- julia: nightly
14+
- os: osx
15+
notifications:
16+
email: false
17+
after_script:
18+
- bash ./docs/travis.sh
19+
after_success:
20+
- julia -e 'cd(Pkg.dir("ApproxFunOrthogonalPolynomials")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
21+
22+
23+
# uncomment the following lines to override the default test script
24+
#script:
25+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
26+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("MyPackage"); Pkg.test("MyPackage"; coverage=true)'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Support for orthogonal polynomial-based spaces in ApproxFun
55
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://JuliaApproximation.github.io/ApproxFun.jl/latest)
66
[![Build Status](https://travis-ci.org/JuliaApproximation/ApproxFun.jl.svg?branch=master)](https://travis-ci.org/JuliaApproximation/ApproxFunOrthogonalPolynomials.jl)
77
[![Build status](https://ci.appveyor.com/api/projects/status/q3e3ihfbxnrjn7ji?svg=true)](https://ci.appveyor.com/project/dlfivefifty/approxfunorthogonalpolynomials-jl)
8-
[![Coverage Status](https://img.shields.io/coveralls/JuliaApproximation/ApproxFunOrthogonalPolynomials.jl.svg)](https://coveralls.io/r/JuliaApproximation/ApproxFunOrthogonalPolynomials.jl?branch=master)
8+
[![codecov](https://codecov.io/gh/JuliaApproximation/ApproxFunBase.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaApproximation/ApproxFunFourier.jl)
99
[![Join the chat at https://gitter.im/JuliaApproximation/ApproxFun.jl](https://badges.gitter.im/JuliaApproximation/ApproxFun.jl.svg)](https://gitter.im/JuliaApproximation/ApproxFun.jl?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1010

1111

0 commit comments

Comments
 (0)