-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from melexis/cq_descr
Add configurability to descriptions of Code Quality report entries
- Loading branch information
Showing
9 changed files
with
197 additions
and
32 deletions.
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
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
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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[ | ||
{ | ||
"severity": "major", | ||
"location": { | ||
"path": "git/test/index.rst", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "envvar_value | toctree contains reference to nonexisting document u'installation' (12345)", | ||
"fingerprint": "678c4f093876aed4280445a61e9556bc" | ||
}, | ||
{ | ||
"severity": "major", | ||
"location": { | ||
"path": "doc/source/conf.py", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "envvar_value | List item 'CL-UNDEFINED_CL_ITEM' in merge/pull request 138 is not defined as a checklist-item. (12345)", | ||
"fingerprint": "76989a10d5c1d2cd28080ea2aafa3c04" | ||
}, | ||
{ | ||
"severity": "info", | ||
"location": { | ||
"path": "doc/doxygen/Doxyfile", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "Output directory `doc/doxygen/framework' does not exist. I have created it for you.", | ||
"fingerprint": "256cb9d4b9b3c05ba755e5da30b2afb2" | ||
}, | ||
{ | ||
"severity": "critical", | ||
"location": { | ||
"path": "helper/SimpleTimer.h", | ||
"lines": { | ||
"begin": 19 | ||
} | ||
}, | ||
"description": "Unexpected character `\"'", | ||
"fingerprint": "d71d9f49bd308ace916bce3c54f430c6" | ||
}, | ||
{ | ||
"severity": "major", | ||
"location": { | ||
"path": "doc/doxygen/Doxyfile", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "The following parameters of sofa::component::odesolver::EulerKaapiSolver::v_peq(VecId v, VecId a, double f) are not documented:", | ||
"fingerprint": "9c91370059e40eb07289790f2b9d6a75" | ||
}, | ||
{ | ||
"severity": "critical", | ||
"location": { | ||
"path": "doc/doxygen/Doxyfile", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "Could not read image `/home/user/myproject/html/struct_foo_graph.png' generated by dot!", | ||
"fingerprint": "bdd0d0b7cc25b1f4414f630c2351bf3c" | ||
}, | ||
{ | ||
"severity": "critical", | ||
"location": { | ||
"path": ".gitlab-ci.yml", | ||
"lines": { | ||
"begin": 1 | ||
} | ||
}, | ||
"description": "test_some_error_test (something.anything.somewhere)'", | ||
"fingerprint": "cd09ae46ee5361570fd59de78b454e11" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"sphinx": { | ||
"enabled": true, | ||
"cq_default_path": "doc/source/conf.py", | ||
"cq_description_template": "$FIRST_ENVVAR | $description ($SECOND_ENVVAR)", | ||
"min": 0, | ||
"max": 0 | ||
}, | ||
"doxygen": { | ||
"enabled": true, | ||
"cq_default_path": "doc/doxygen/Doxyfile", | ||
"min": 0, | ||
"max": 0 | ||
}, | ||
"junit": { | ||
"enabled": false | ||
}, | ||
"xmlrunner": { | ||
"enabled": true, | ||
"min": 0, | ||
"max": 0 | ||
}, | ||
"coverity": { | ||
"enabled": true, | ||
"min": 0, | ||
"max": 0 | ||
}, | ||
"robot": { | ||
"enabled": false | ||
} | ||
} |
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.