Skip to content

Commit aa23a70

Browse files
committed
Modernize badges and Travis testing
1 parent 357c48e commit aa23a70

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.travis.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
language: julia
22
os:
3-
- osx
43
- linux
54
julia:
6-
- release
5+
- 0.4
76
- nightly
7+
sudo: false
88
notifications:
99
email: false
1010
script:
1111
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
12-
- julia -e 'Pkg.clone(pwd()); Pkg.build("RandomMatrices"); Pkg.test("RandomMatrices"; coverage=true)';
13-
- julia -e 'cd(Pkg.dir("RandomMatrices")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';
12+
- julia -e 'Pkg.clone(pwd())'
13+
- julia -e 'Pkg.test("RandomMatrices", coverage=true)'
14+
after_success:
15+
- julia -e 'Pkg.add("Coverage"); cd(Pkg.dir("RandomMatrices")); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(process_folder())'
16+

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ RandomMatrices.jl
33

44
Random matrix package for [Julia](http://julialang.org).
55

6-
[![RandomMatrices on Julia release](http://pkg.julialang.org/badges/RandomMatrices_release.svg)](http://pkg.julialang.org/?pkg=RandomMatrices&ver=release)
7-
[![RandomMatrices on Julia nightly](http://pkg.julialang.org/badges/RandomMatrices_nightly.svg)](http://pkg.julialang.org/?pkg=RandomMatrices&ver=nightly)
6+
[![RandomMatrices](http://pkg.julialang.org/badges/RandomMatrices_0.4.svg)](http://pkg.julialang.org/?pkg=RandomMatrices)
87
[![Build Status](https://travis-ci.org/jiahao/RandomMatrices.jl.png?branch=master)](https://travis-ci.org/jiahao/RandomMatrices.jl)
9-
[![Coverage Status](https://coveralls.io/repos/jiahao/RandomMatrices.jl/badge.svg?branch=master)](https://coveralls.io/r/jiahao/RandomMatrices.jl?branch=master)
8+
[![Coverage Status](https://coveralls.io/repos/jiahao/RandomMatrices.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/jiahao/RandomMatrices.jl?branch=master)
9+
[![codecov.io](https://codecov.io/github/jiahao/RandomMatrices.jl/coverage.svg?branch=master)](https://codecov.io/github/jiahao/RandomMatrices.jl?branch=master)
1010

1111
This extends the [Distributions](https://github.com/JuliaStats/Distributions.jl)
1212
package to provide methods for working with matrix-valued random variables,

VERSION

-1
This file was deleted.

0 commit comments

Comments
 (0)