Skip to content

Commit

Permalink
DEBUG: travis-ci and coverage testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Jan 3, 2019
1 parent 5439de6 commit 615ca90
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
before_script:
- export COVERALLS_PARALLEL=true

# Send final notification to coveralls after all jobs have been completed.
notifications:
webhooks: https://coveralls.io/webhook

matrix:
include:
- name: "Java Tests"
Expand All @@ -6,7 +13,7 @@ matrix:
install:
- mvn test-compile -DskipTests=true -Dmaven.javadoc.skip=true -B -V
after_success:
- COVERALLS_PARALLEL=true mvn clean test cobertura:cobertura jacoco:report coveralls:report
- mvn clean test cobertura:cobertura jacoco:report coveralls:report

- name: "Node Tests"
language: node_js
Expand All @@ -19,16 +26,7 @@ matrix:
- npm start > /dev/null &
- npm run update-webdriver
- sleep 1 # give server time to start
- COVERALLS_PARALLEL=true grunt coverage-preprocess
- grunt coverage-preprocess
script:
- npm run test-ci
- COVERALLS_PARALLEL=true grunt coverage

# upload coverage report to coveralls.io
#after_success:
# - COVERALLS_PARALLEL=true coveralls

# Send final notification to coveralls after all jobs have been completed.
notifications:
webhooks: https://coveralls.io/webhook

- grunt coverage

0 comments on commit 615ca90

Please sign in to comment.