Skip to content

Commit

Permalink
ci: add dead code detection
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonas1312 committed Oct 10, 2023
1 parent dad3fbd commit 4ed22e7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,14 +181,15 @@ jobs:
cat dead_code.log | \
grep -e "src/kili" | \
grep -v \
-e "src/kili/types.py" \
-e "internal.py" \
-e "unused attribute \'internal\'" \
-e "is only referenced in tests" \
-e "_ is never read" \
-e "affected_rows" \
-e "src/kili/orm" \
-e "src/kili/entrypoints" \
-e "internal.py" \
-e "src/kili/services" \
-e "affected_rows" \
-e "src/kili/types.py" \
-e "src/kili/core/graphql/ws_graphql_client" \
> dead_code_filtered.log
Expand Down

0 comments on commit 4ed22e7

Please sign in to comment.