Skip to content

Commit

Permalink
Merge pull request #104 from holgerteichgraeber/dev
Browse files Browse the repository at this point in the history
Move the current dev branch into master. Includes enhanced testing, integration with codecov.io, and enhanced documentation.
  • Loading branch information
holgerteichgraeber authored Jul 8, 2019
2 parents b70a5d2 + 5443a35 commit ed180c0
Show file tree
Hide file tree
Showing 55 changed files with 18,898 additions and 19,397 deletions.
29 changes: 29 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
codecov:
notify:
require_ci_to_pass: yes

coverage:
precision: 2
round: down
range: "70...100"

status:
project: yes
patch: yes
changes: no

parsers:
gcov:
branch_detection:
conditional: yes
loop: yes
method: no
macro: no

comment:
layout: "header, diff"
behavior: default
require_changes: no

ignore:
- "src/clustering/shape_based/*"
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,22 @@ julia:
notifications:
email: false

after_success:

jobs:
include:
- stage: "Testing"
julia: 1.0
os: linux
script:
- julia --project=test/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=test/ test/clustering.jl
- julia --project=test/ test/test_workflow_introduction.jl
after_success:
- julia --project=test/ --code-coverage test/runtests.jl
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
after_success:
services: docker
after_success: skip

after_success:
- julia -e 'using Pkg; Pkg.add("Coverage")'
- julia -e 'using Coverage; Codecov.submit(process_folder())'
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## How to contribute to ClustForOpt.jl
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).

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.
316 changes: 0 additions & 316 deletions Manifest.toml

This file was deleted.

Loading

2 comments on commit ed180c0

@holgerteichgraeber
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/1887

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.2 -m "<description of version>" ed180c092485ef11fa0ebb589926e52e5af3d44f
git push origin v0.4.2

Please sign in to comment.