Skip to content

Commit ed180c0

Browse files
Merge pull request #104 from holgerteichgraeber/dev
Move the current dev branch into master. Includes enhanced testing, integration with codecov.io, and enhanced documentation.
2 parents b70a5d2 + 5443a35 commit ed180c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+18898
-19397
lines changed

.codecov.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
codecov:
2+
notify:
3+
require_ci_to_pass: yes
4+
5+
coverage:
6+
precision: 2
7+
round: down
8+
range: "70...100"
9+
10+
status:
11+
project: yes
12+
patch: yes
13+
changes: no
14+
15+
parsers:
16+
gcov:
17+
branch_detection:
18+
conditional: yes
19+
loop: yes
20+
method: no
21+
macro: no
22+
23+
comment:
24+
layout: "header, diff"
25+
behavior: default
26+
require_changes: no
27+
28+
ignore:
29+
- "src/clustering/shape_based/*"

.travis.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,22 @@ julia:
99
notifications:
1010
email: false
1111

12-
after_success:
13-
1412
jobs:
1513
include:
1614
- stage: "Testing"
1715
julia: 1.0
1816
os: linux
1917
script:
2018
- julia --project=test/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
21-
- julia --project=test/ test/clustering.jl
22-
- julia --project=test/ test/test_workflow_introduction.jl
23-
after_success:
19+
- julia --project=test/ --code-coverage test/runtests.jl
2420
- stage: "Documentation"
2521
julia: 1.0
2622
os: linux
2723
script:
2824
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2925
- julia --project=docs/ docs/make.jl
30-
after_success:
31-
services: docker
26+
after_success: skip
27+
28+
after_success:
29+
- julia -e 'using Pkg; Pkg.add("Coverage")'
30+
- julia -e 'using Coverage; Codecov.submit(process_folder())'

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## How to contribute to ClustForOpt.jl
2+
Welcome! Thank you for considering to contribute to `ClustForOpt.jl`. If you have a comment, question, feature request, or bug report, please open a new [issue](https://github.com/holgerteichgraeber/ClustForOpt.jl/issues).
3+
4+
If you like to file a bug report, or like to contribute to the documentation or the code (always welcome!), the [JuMP.jl Contributing.md](https://github.com/JuliaOpt/JuMP.jl/blob/master/CONTRIBUTING.md) has some great tips on how to get started.

Manifest.toml

Lines changed: 0 additions & 316 deletions
This file was deleted.

0 commit comments

Comments
 (0)