Skip to content

Commit

Permalink
Remove sync_default_files from method signatures
Browse files Browse the repository at this point in the history
synced_files has been removed.
files_to_sync is always initialized with the default files path.
If default files have not to be synchronized then they have to be removed from files_to_sync list.
  • Loading branch information
majamassarini committed Dec 3, 2024
1 parent fc00865 commit 27463f2
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 21 deletions.
1 change: 0 additions & 1 deletion packit_service/worker/handlers/distgit.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,6 @@ def sync_branch(
"create_pr": True,
"local_pr_branch_suffix": branch_suffix,
"use_downstream_specfile": is_pull_from_upstream_job,
"sync_default_files": not is_pull_from_upstream_job,
"add_pr_instructions": True,
"resolved_bugs": self.get_resolved_bugs(),
"release_monitoring_project_id": self.data.event_dict.get(
Expand Down
12 changes: 3 additions & 9 deletions packit_service/worker/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,12 @@

import celery
from ogr.exceptions import GithubAppNotInstalledError

from packit.config import JobConfig, JobConfigTriggerType, JobConfigView, JobType
from packit.config.job_config import DEPRECATED_JOB_TYPES
from packit.utils import nested_get

from packit_service.config import PackageConfig, PackageConfigGetter, ServiceConfig
from packit_service.constants import (
TASK_ACCEPTED,
COMMENT_REACTION,
DOCS_CONFIGURATION_URL,
PACKIT_VERIFY_FAS_COMMAND,
TASK_ACCEPTED,
)
Expand Down Expand Up @@ -641,18 +638,15 @@ def should_task_be_created_for_job_config_and_handler(
)
return False

if not handler_kls.pre_check(
return handler_kls.pre_check(
package_config=(
self.event.packages_config.get_package_config_for(job_config)
if self.event.packages_config
else None
),
job_config=job_config,
event=self.event.get_dict(),
):
return False

return True
)

def is_project_public_or_enabled_private(self) -> bool:
"""
Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_new_hotness_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ def test_new_hotness_update(new_hotness_update, sync_release_model):
create_pr=True,
local_pr_branch_suffix="update-pull_from_upstream",
use_downstream_specfile=True,
sync_default_files=False,
add_pr_instructions=True,
resolved_bugs=["rhbz#2106196"],
release_monitoring_project_id=4181,
Expand Down Expand Up @@ -391,7 +390,6 @@ def test_new_hotness_update_non_git(new_hotness_update, sync_release_model_non_g
create_pr=True,
local_pr_branch_suffix="update-pull_from_upstream",
use_downstream_specfile=True,
sync_default_files=False,
add_pr_instructions=True,
resolved_bugs=["rhbz#2106196"],
release_monitoring_project_id=4181,
Expand Down
2 changes: 0 additions & 2 deletions tests/integration/test_pr_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -2727,7 +2727,6 @@ def _get_project(url, *_, **__):
create_pr=True,
local_pr_branch_suffix="update-pull_from_upstream",
use_downstream_specfile=True,
sync_default_files=False,
add_pr_instructions=True,
resolved_bugs=["rhbz#123", "rhbz#124"],
release_monitoring_project_id=None,
Expand Down Expand Up @@ -2894,7 +2893,6 @@ def _get_project(url, *_, **__):
create_pr=True,
local_pr_branch_suffix="update-pull_from_upstream",
use_downstream_specfile=True,
sync_default_files=False,
add_pr_instructions=True,
resolved_bugs=["rhbz#123", "rhbz#124"],
release_monitoring_project_id=None,
Expand Down
6 changes: 0 additions & 6 deletions tests/integration/test_release_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,6 @@ def test_dist_git_push_release_handle(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down Expand Up @@ -357,7 +356,6 @@ def test_dist_git_push_release_handle_multiple_branches(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down Expand Up @@ -507,7 +505,6 @@ def test_dist_git_push_release_handle_one_failed(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand All @@ -532,7 +529,6 @@ def test_dist_git_push_release_handle_one_failed(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down Expand Up @@ -785,7 +781,6 @@ def test_retry_propose_downstream_task(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down Expand Up @@ -901,7 +896,6 @@ def test_dont_retry_propose_downstream_task(
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down
1 change: 0 additions & 1 deletion tests/unit/test_steve.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,6 @@ def test_process_message(event, private, enabled_private_namespaces, success):
create_pr=True,
local_pr_branch_suffix="update-propose_downstream",
use_downstream_specfile=False,
sync_default_files=True,
add_pr_instructions=True,
resolved_bugs=[],
release_monitoring_project_id=None,
Expand Down

0 comments on commit 27463f2

Please sign in to comment.