Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
d495627
feat: add github annotations reporter
OrenMe Feb 14, 2025
2ca9816
add docs
OrenMe Feb 15, 2025
9c66cb1
lint fix
OrenMe Feb 15, 2025
841c587
Merge branch 'main' into feat/githubAnnotations
OrenMe Feb 15, 2025
890c71e
Merge remote-tracking branch 'refs/remotes/origin/feat/githubAnnotati…
OrenMe Feb 15, 2025
239a7f2
Merge branch 'main' into feat/githubAnnotations
OrenMe Feb 15, 2025
fc9962b
lint fix
OrenMe Feb 15, 2025
6188552
Merge branch 'main' into feat/githubAnnotations
OrenMe Feb 15, 2025
a16f978
Update cli.py
OrenMe Feb 17, 2025
4ca19af
Update python/deptry/cli.py
OrenMe Feb 19, 2025
132d1f7
CR comments
OrenMe Feb 19, 2025
77bbe53
Merge remote-tracking branch 'refs/remotes/origin/feat/githubAnnotati…
OrenMe Feb 19, 2025
a33bae1
Update docs/usage.md
OrenMe Feb 19, 2025
a7f6f89
more CR fixes
OrenMe Feb 19, 2025
8950f31
Merge remote-tracking branch 'refs/remotes/origin/feat/githubAnnotati…
OrenMe Feb 19, 2025
b483f72
Merge branch 'main' into feat/githubAnnotations
OrenMe Feb 21, 2025
36bca11
Merge branch 'main' into feat/githubAnnotations
OrenMe Feb 23, 2025
54c6f05
Merge branch 'main' into feat/githubAnnotations
OrenMe Mar 16, 2025
4b457a1
Merge branch 'main' of github.com:fpgmaas/deptry into feat/githubAnno…
mkniewallner Nov 7, 2025
261aa89
feat(reporters): handle violations without line/column
mkniewallner Nov 7, 2025
c7fa470
test: add functional tests for GitHub reporter
mkniewallner Nov 7, 2025
a26e41c
docs(usage): tweak documentation
mkniewallner Nov 7, 2025
4324cff
test: use tuple for `github_warning_errors` arg
mkniewallner Nov 7, 2025
1c4bbbd
fix(cli): use tuple for `github_warning_errors` arg
mkniewallner Nov 7, 2025
e6f76d8
refactor(reporters): code/message are never `None`
mkniewallner Nov 7, 2025
7fe1324
test: windows, as usual
mkniewallner Nov 8, 2025
23031df
test: more windows
mkniewallner Nov 8, 2025
9517654
Merge branch 'main' into feat/githubAnnotations
mkniewallner Nov 8, 2025
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
Prev Previous commit
Next Next commit
fix(cli): use tuple for github_warning_errors arg
  • Loading branch information
mkniewallner committed Nov 7, 2025
commit 1c4bbbdb997d6f9ca87e8486033a273d8a83b894
2 changes: 1 addition & 1 deletion python/deptry/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def cli(
known_first_party=known_first_party,
json_output=json_output,
github_output=github_output,
github_warning_errors=list(github_warning_errors),
github_warning_errors=github_warning_errors,
package_module_name_map=package_module_name_map,
pep621_dev_dependency_groups=pep621_dev_dependency_groups,
experimental_namespace_package=experimental_namespace_package,
Expand Down
Loading