Open ihsanjunaidi opened 8 years ago
@ihsanjunaidi How about something like http://tungwaiyip.info/software/sample_test_report.html
@ihsanjunaidi @vnitinv For information, I have a prototype to run JSNAPy test as part of "pytest". I need to clean up the code and share it.
The idea is that you can have a directory with all tests define, in Python/Pytest or with Jsnap and all of them will be executed together with running python -m pytest -v
Here is the current output.
➜ tests python -m pytest -v
======================================================== test session starts ========================================================
platform darwin -- Python 2.7.11, pytest-2.9.1, py-1.4.31, pluggy-0.3.1 -- /usr/local/opt/python/bin/python2.7
cachedir: .cache
rootdir: /Users/dgarros/projects/jsnapy_pytest/tests, inifile:
plugins: cov-2.2.1
collected 4 items
test_jsnapy.py::test_valid_string[127.0.0.1/2222/test_junos_alarm.yml] FAILED
test_jsnapy.py::test_valid_string[127.0.0.1/2222/test_junos_interface_ext.yml] PASSED
test_jsnapy.py::test_valid_string[127.0.0.1/2200/test_junos_alarm.yml] FAILED
test_jsnapy.py::test_valid_string[127.0.0.1/2200/test_junos_interface_ext.yml] PASSED
Because there are already some library there are already some libraries available to generate HTML report from Pytest results
For example, I tried pytest-html.
Here is an example with my script:
Please let me know if you are interested.
@dgarros @ihsanjunaidi Looks nice to me Damien
@dgarros How we can we integrate this? Can I expect a pull request from you for the same.
Hi,
I think it would be more than useful if there is an option to pipe the result into a static HTML page. Currently you have to use Jinja2 template and as I understand use web framework that supports it. This is a substantial learning curve to understand Flask for example and Jinja2.
My suggestion is to have a runtime option that can generate HTML page (with nice CSS & JS) that can be customized or a step up to creating web app.