Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

[FIX] runbot_travis2docker: Use the correct name in the super #161

Merged
merged 1 commit into from
Jun 4, 2018
Merged
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
2 changes: 1 addition & 1 deletion runbot_travis2docker/models/runbot_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _job_20_test_all(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(
return super(RunbotBuild, self)._job_21_coverage_html(
build, lock_path, log_path)
_logger.info('docker build skipping job_21_coverage_html')
return MAGIC_PID_RUN_NEXT_JOB
Expand Down