Skip to content

Commit

Permalink
Change test
Browse files Browse the repository at this point in the history
  • Loading branch information
lbarcziova committed Dec 10, 2019
1 parent 0e6f309 commit cc9abfc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
SyncFilesConfig,
SyncFilesItem,
)
from packit.config.aliases import get_build_targets, get_branches
from packit.exceptions import PackitInvalidConfigException


Expand Down Expand Up @@ -71,12 +72,12 @@ def get_default_job_config():
JobConfig(
job=JobType.copr_build,
trigger=JobTriggerType.pull_request,
metadata={"targets": {"fedora-31-x86_64", "fedora-30-x86_64"}},
metadata={"targets": get_build_targets("fedora-stable")},
),
JobConfig(
job=JobType.propose_downstream,
trigger=JobTriggerType.release,
metadata={"dist-git-branch": {"f31", "f30", "master"}},
metadata={"dist-git-branch": get_branches("fedora-all")},
),
]

Expand Down

0 comments on commit cc9abfc

Please sign in to comment.