Fix bad test in tag check. #738

Merged
telackey merged 1 commits from telackey/badtest into main 2024-02-08 20:38:42 +00:00

View File

@ -355,11 +355,13 @@ def generate_hostname_for_app(app):
def skip_by_tag(r, include_tags, exclude_tags): def skip_by_tag(r, include_tags, exclude_tags):
for tag in exclude_tags: for tag in exclude_tags:
if tag and r.attributes.tags and tag in r.attributes.tags: if r.attributes.tags and tag in r.attributes.tags:
return True return True
for tag in include_tags: if include_tags:
if tag and (not r.attributes.tags or tag not in r.attributes.tags): for tag in include_tags:
return True if r.attributes.tags and tag in r.attributes.tags:
return False
return True
return False return False