-
Notifications
You must be signed in to change notification settings - Fork 9
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
Show collected items data #235
Conversation
Hello @jan-cerny! Thanks for updating this PR. We checked the lines you've touched for PEP 8 issues, and found: There are currently no PEP 8 issues detected in this Pull Request. Cheers! 🍻 Comment last updated at 2024-06-26 08:05:45 UTC |
openscap_report/report_generators/html_templates/js/oval_graph_generation_script.js
Fixed
Show fixed
Hide fixed
Currently, the "Show test details" section displays definition of OVAL Object and OVAL State. This patch will add also displaying OVAL Items collected from the system for the given OVAL Object. This is a very popular feature of the old report which I think will be useful also in the new report because it gives detailed information about the actual state of the target.
b0100b7
to
ee06fbe
Compare
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.
Please take look at the tox
output.
There are few failing items there.
Addressing: tests/unit_tests/test_oval_items_parser.py:13:0: R0914: Too many local variables (25/15) (too-many-locals) tests/unit_tests/test_oval_items_parser.py:92:34: W0621: Redefining name 'parser' from outer scope (line 14) (redefined-outer-name)
Waving the Scrutinizer tests as they are not caused by this PR. |
they will be fixed in #237 |
Currently, the "Show test details" section displays definition of OVAL Object and OVAL State. This patch will add also displaying OVAL Items collected from the system for the given OVAL Object. This is a very popular feature of the old report which I think will be useful also in the new report because it gives detailed information about the actual state of the target.