Skip to content

Commit

Permalink
Merge 117c801 into 4ac0348
Browse files Browse the repository at this point in the history
  • Loading branch information
moylop260 committed Jun 4, 2018
2 parents 4ac0348 + 117c801 commit a50bfc7
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions runbot_travis2docker/models/runbot_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,18 @@ def _job_20_test_all(self, build, lock_path, log_path):
build._get_docker_run_cmd(), lock_path, log_path, cpu_limit=1200,
)

def _job_21_coverage(self, build, lock_path, log_path):
def _job_21_coverage_html(self, build, lock_path, log_path):
if not build.branch_id.repo_id.is_travis2docker_build:
return super(RunbotBuild, self)._job_21_coverage(
build, lock_path, log_path)
_logger.info('docker build skipping job_21_coverage')
_logger.info('docker build skipping job_21_coverage_html')
return MAGIC_PID_RUN_NEXT_JOB

def _job_22_coverage_result(self, build, lock_path, log_path):
if not build.branch_id.repo_id.is_travis2docker_build:
return super(RunbotBuild, self)._job_22_coverage_result(
build, lock_path, log_path)
_logger.info('docker build skipping job_22_coverage_result')
return MAGIC_PID_RUN_NEXT_JOB

def _job_30_run(self, build, lock_path, log_path):
Expand Down

0 comments on commit a50bfc7

Please sign in to comment.