Skip to content

Commit 0ef681e

Browse files
add travis and codecov (#26)
* add travis and codecov * fix includes * Update Project.toml
1 parent 71914f3 commit 0ef681e

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

.travis.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
language: julia
2+
os:
3+
- linux
4+
julia:
5+
- 1.0
6+
- 1.1
7+
- 1.2
8+
matrix:
9+
allow_failures:
10+
- julia: nightly
11+
notifications:
12+
email: false
13+
sudo: false
14+
branches:
15+
only:
16+
- master
17+
codecov: true
18+
jobs:
19+
include:
20+
- stage: "Documentation"
21+
julia: 1.0
22+
os: linux
23+
script:
24+
- julia --project=docs -e 'using Pkg; Pkg.add(PackageSpec(path=pwd()))'
25+
- julia --project=docs --color=yes docs/make.jl

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ Optim = "429524aa-4258-5aef-a3af-852621145aeb"
1010
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
1111

1212
[extras]
13-
HypothesisTests = "09f84164-cd44-5f33-b23f-e6b0d136a0d5"
1413
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
14+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
15+
HypothesisTests = "09f84164-cd44-5f33-b23f-e6b0d136a0d5"
1516

1617
[targets]
17-
test = ["Test"]
18+
test = ["Test", "Random", "HypothesisTests"]

src/ScoreDrivenModels.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import Base.length
88
# Core files
99
include("abstracts.jl")
1010
include("utils.jl")
11-
include("sample.jl")
1211
include("link_functions.jl")
1312
include("score.jl")
1413
include("MLE.jl")

0 commit comments

Comments
 (0)