-
Notifications
You must be signed in to change notification settings - Fork 281
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
JSON & XML formaters #442
Open
QuentinN42
wants to merge
32
commits into
adrienverge:master
Choose a base branch
from
QuentinN42:json-and-xml-formaters
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
JSON & XML formaters #442
Changes from 15 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
81951b3
chore: ignore venv
QuentinN42 b858cbb
refactor: moved formater inside another file
QuentinN42 3601817
refactor: moved output at the end of the tests
QuentinN42 46a12a8
fix: missed return statement
QuentinN42 c4463c7
feat: max_level as separate function
QuentinN42 6217241
refactor: use object inheritance for the formaters
QuentinN42 fbf8108
feat: json formater
QuentinN42 805b9a9
feat: junitxml formater
QuentinN42 6a06e8d
feat: changed json output file name to path
QuentinN42 2839489
typo
QuentinN42 d24519c
feat: add codeclimate output
QuentinN42 4baaf12
feat: add message to the json format
QuentinN42 e04f03a
feat: auto infer formats
QuentinN42 4057451
feat: changed json format according to @adrienverge comment
QuentinN42 dab7a80
fix: test_run_with_user_global_config_file patched
QuentinN42 b1ce2f2
test: escape_xml
QuentinN42 32de447
test: severity_from_level
QuentinN42 eb48e1d
test: Base class test
QuentinN42 1f6adf6
test: Class to test all fmt
QuentinN42 b42ac81
chore: rm coverage
QuentinN42 d666308
tests: use ddt to parametrize tests
QuentinN42 4ae5487
feat: add the possibility to pass the level as argument
QuentinN42 418952c
refactor: match flake requirements
QuentinN42 48b5e2b
tests: tested formats with errors
QuentinN42 e018da1
feat: fixed some isues
QuentinN42 0354c33
ci: add ddt to the tests requirements and update the contributing fil…
QuentinN42 3561a77
tests: testing skipping warn with None level
QuentinN42 64e19e8
fix: filter None to exclude them
QuentinN42 f0000a1
test: test with mixed errors / files
QuentinN42 fba5b70
tests: use ddt to others classes
QuentinN42 d7f59fe
test: escape real text
QuentinN42 ad46f33
test: remaining tests done
QuentinN42 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,6 @@ __pycache__ | |
/yamllint.egg-info | ||
/build | ||
/.eggs | ||
.venv | ||
venv | ||
.coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've also patched the
test_run_with_user_global_config_file
test by adding removing other env vars.