Skip to content

Fix for issue #2 #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Sep 10, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
*.class
*.log

# sbt specific
.cache
.cache-main
.cache-tests
.history
.lib/
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/

# Ignore Eclipse files
.project
.classpath
.prefs
.settings

# Scala-IDE specific
.scala_dependencies
.worksheet
/bin/
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,8 @@ language: scala
scala:
- 2.10.2

before_script:
- pip install --user codecov

script:
- sbt clean scoverage:test
- sbt clean coverage test

after_script:
- codecov
after_success:
- bash <(curl -s https://codecov.io/bash)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ Add to your `.travis.yml` file.
language: scala

script:
- sbt clean scoverage:test
- sbt clean coverage test

after_success:
- pip install --user codecov && codecov
- bash <(curl -s https://codecov.io/bash)
```

> All other CI you can simply run `pip install --user codecov && codecov`.
Expand Down
8 changes: 3 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ libraryDependencies ++= Seq(
"org.scalatest" % "scalatest_2.10" % "2.2.0"
)

instrumentSettings
ScoverageSbtPlugin.ScoverageKeys.coverageMinimum := 60

ScoverageKeys.minimumCoverage := 60
ScoverageSbtPlugin.ScoverageKeys.coverageFailOnMinimum := false

ScoverageKeys.failOnMinimumCoverage := false

ScoverageKeys.highlighting := {
ScoverageSbtPlugin.ScoverageKeys.coverageHighlighting := {
if (scalaBinaryVersion.value == "2.10") false
else false
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.1
sbt.version=0.13.7