Victor Maryama
Victor Maryama
You can use the command `allure generate ` to create html files. This folder you could send around, but you can only directly open the `index.html` file with Edge or...
I was reading the comments on #4055 where it seemed that no changes would be considered in the short term because of the risk of breaking tests in the wild....
Awesome, looking forward to it! I guess it might also help #5460 (#3551 I believe was also using a directed graph approach for fixture dependency/execution).
Nice! I would be willing to help with documentation (with graphviz) but I would just need someone who knows pytest execution flow to define in any way (text or in...
That is really great, can't believe all this time I didn't know it! I will try to come up with something then and create PR so you can review it.
I was thinking about doing something like this: https://github.com/Sup3rGeo/pytest/blob/ace24468d336fdd4a8c2eaa3c3e9a32da961f98b/doc/en/img/Pytest%20hooks.png However I am not sure how to do this with graphviz. Mainly to represent the fact that some hooks are executed...
> I think it looks great! Also, perhaps you can write a script to generate the graphviz output from a pytestdebug.log file? Then we can automate this graph generation for...
So basically I wrote something to parse the log file and create a tree using `anytree` module: https://github.com/Sup3rGeo/pytest/blob/master/doc/pytesthooks.py The result: ``` root └── pytest_cmdline_main ├── pytest_plugin_registered ├── pytest_configure │ └──...
So I ran a test again and same thing happened: One of the `pytest_runtest_setup` hooks did not have a corresponding `finish pytest_runtest_setup` line. This will confuse the script I wrote....
This might be also useful for #3113 and #2670