Skip to content

Commit

Permalink
Fix: [AEA-0000] - Add ignores to check-licenses (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
wildjames authored Oct 24, 2024
1 parent aae365f commit a05d7a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ jobs:
poetry run pip install pip-licenses
fi
LICENSES=$(poetry run pip-licenses)
# known packages with dual licensing
IGNORE_PACKAGES="PyGithub chardet text-unidecode"
LICENSES=$(poetry run pip-licenses --ignore-packages ${IGNORE_PACKAGES})
INCOMPATIBLE_LIBS=$(echo "$LICENSES" | grep 'GPL' || true)
if [[ -z $INCOMPATIBLE_LIBS ]]; then
Expand Down

0 comments on commit a05d7a2

Please sign in to comment.