Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add reason to support wider boycott list #15

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
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: 2 additions & 0 deletions schemas/brand_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ properties:
enum:
- operations_in_israel
- operations_in_settlements
- executive_supports_israel
- hiring_discrimination
countries:
description: |-
A list of countries (ISO alpha-2 country codes) that the brand operates in.
Expand Down
7 changes: 6 additions & 1 deletion scripts/validate_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,14 @@ def main():
company_schema = load_yaml(os.path.join(root_path, "schemas/company_schema.yaml"))
company_files = glob.glob(os.path.join(root_path, "data/companies/") + "*.yaml")
print("Validating", len(company_files), "companies")
failed = False
for file in company_files:
if not validate_with_schema(file, company_schema):
exit(1)
failed = True

if failed:
exit(1)

print("All companies are valid.")


Expand Down
Loading