Browse Source

Remove code coverage analysis from Travis-CI

Hamilton Turner 11 years ago
parent
commit
1a688726e5
2 changed files with 1 additions and 13 deletions
  1. 0 9
      .travis.yml
  2. 1 4
      toolset/run-ci.py

+ 0 - 9
.travis.yml

@@ -22,7 +22,6 @@ env:
     # Put this first as Travis-CI builds top to bottom
     - TESTDIR=jobcleaner
 
-
     # Group tests by directory to logically break up travis-CI build. Otherwise
     # we end up starting ~200+ different workers. Seems that ~100 is the limit
     # before their website starts to lag heavily
@@ -172,8 +171,6 @@ before_install:
   # Doesn't work yet
   # - alias run_tfb="coverage run --parallel-mode --omit installs,results"
 install:
-  - time pip install coveralls
-  
   # Install server prerequisites
   - time ./toolset/run-ci.py prereq $TESTDIR
 
@@ -181,11 +178,5 @@ install:
   - echo $TRAVIS_COMMIT_RANGE
   - git diff --name-only $TRAVIS_COMMIT_RANGE
 script: 
-  
   # Run test verification 
   - time ./toolset/run-ci.py test $TESTDIR
-
-after_success:
-  - coverage combine
-  - coverage report
-  - coveralls

+ 1 - 4
toolset/run-ci.py

@@ -89,11 +89,8 @@ class CIRunnner:
       return 0
 
     log.info("Running %s for %s", self.mode, self.name)
-
-    # Use coverage so we can send code coverate to coveralls.io
-    command = "coverage run --source toolset,%s --parallel-mode " % self.test.directory
     
-    command = command + 'toolset/run-tests.py '
+    command = 'toolset/run-tests.py '
     if mode == 'prereq':
       command = command + "--install server --test ''"
     elif mode == 'install':