Skip to content
Snippets Groups Projects
Verified Commit e99d3464 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

test_cli: Exclude launchpad lister from the check

This should fix the build [1]

[1] https://jenkins.softwareheritage.org/view/Debian%20packages/job/debian/job/packages/job/DLS/job/gbp-buildpackage/77/console
parent 250160ad
No related branches found
Tags v0.1.1
No related merge requests found
......@@ -25,7 +25,9 @@ def test_get_lister(mock_get_scheduler):
"""
db_url = init_db().url()
for lister_name in SUPPORTED_LISTERS:
# launchpad lister need particular setup so exclude from the checks
listers_to_check = set(SUPPORTED_LISTERS) | {"launchpad"}
for lister_name in listers_to_check:
lst = get_lister(lister_name, db_url)
assert isinstance(lst, ListerBase)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment