Skip to content

Commit f78e63e

Browse files
committed
Removed coverage for now
1 parent f4c3e58 commit f78e63e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: scala
22
scala:
3-
- 2.12.4
3+
- 2.13.1
44
script:
55
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
6-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
6+
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION test; fi'
7+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then sbt ++$TRAVIS_SCALA_VERSION coverage test coverageReport coverageAggregate codacyCoverage; fi'
78
after_success:
8-
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'
9+
# - 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash <(curl -s https://codecov.io/bash); fi'

project/plugins.sbt

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
33
addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.3.15")
44

55
// coverage
6-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
7-
addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
6+
// addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
7+
// addSbtPlugin("com.codacy" % "sbt-codacy-coverage" % "1.3.14")
88

99
// preparation for dependency checking
1010
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.9.1")

0 commit comments

Comments
 (0)