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 023fc21 commit afb5ce9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ jobs:
cat dead_code.log | grep -e "src/kili"
- name: Filter dead code
run: |
cat dead_code.log | grep -e "src/kili" | grep -v -e "src/kili/types.py"
cat dead_code.log | grep -e "src/kili" | grep -v -e "src/kili/types.py" -e "is only referenced in tests"
- name: Filter dead code
run: |
cat dead_code.log | grep -e "src/kili" | grep -v -e "src/kili/types.py" -e "is only referenced in tests" -e "_ is never read" -e "src/kili/orm" -e "src/kili/entrypoints" -e "internal.py" -e "src/kili/services" -e "affected_rows" -e "unused attribute 'internal'" -e "src/kili/core/graphql/ws_graphql_client"
cat dead_code.log | grep -e "src/kili" | grep -v -e "src/kili/types.py" -e "is only referenced in tests" -e "_ is never read" -e "src/kili/orm" -e "src/kili/entrypoints" -e "internal.py" -e "src/kili/services" -e "affected_rows" -e "src/kili/core/graphql/ws_graphql_client"
- name: Filter dead code
run: |
Expand Down

0 comments on commit afb5ce9

Please sign in to comment.