Skip to content

Commit 085adb7

Browse files
authored
Merge pull request #82 from FluxML/sf/coverage
Coverage redux
2 parents d9471a5 + 6d58b21 commit 085adb7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ git:
1212

1313
# Submit to Codecov
1414
after_success:
15-
- julia -e 'cd(Pkg.dir("NNlib")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
15+
- julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# NNlib
22

3-
[![Build Status](https://travis-ci.org/FluxML/NNlib.jl.svg?branch=master)](https://travis-ci.org/FluxML/NNlib.jl) [![Build status](https://ci.appveyor.com/api/projects/status/wo2wkv1l9cj548uh?svg=true)](https://ci.appveyor.com/project/one-more-minute/nnlib-jl)
3+
[![Build Status](https://travis-ci.org/FluxML/NNlib.jl.svg?branch=master)](https://travis-ci.org/FluxML/NNlib.jl) [![Build status](https://ci.appveyor.com/api/projects/status/wo2wkv1l9cj548uh?svg=true)](https://ci.appveyor.com/project/one-more-minute/nnlib-jl) [![Coverage](https://codecov.io/gh/FluxML/NNlib/branch/master/graph/badge.svg)](https://codecov.io/gh/FluxML/NNlib)
4+
45

56
This package will provide a library of functions useful for ML, such as softmax, sigmoid, convolutions and pooling. It doesn't provide any other "high-level" functionality like layers or AD.
67

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ test_script:
4242
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
4343

4444
after_test:
45-
- C:\projects\julia\bin\julia -e "cd(Pkg.dir(\"NNlib\")); Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"
45+
- C:\julia\bin\julia -e "using Pkg; Pkg.add(\"Coverage\"); using Coverage; Codecov.submit(process_folder())"

0 commit comments

Comments
 (0)