Thank you Sunil, the way you explaing is very good
@qavbox4 жыл бұрын
Glad that the effort helps someone..
@maneeshaampolu545811 ай бұрын
Hi Sir, Thanks for the video. Can we skip certain test cases based on results of previous test cases using skipif? Thanks in advance.
@qavbox11 ай бұрын
You can use this below python library to achieve this. pypi.org/project/pytest-depends/
@anubaby7636 Жыл бұрын
how to execute test cases in specific order in pytest? (test cases in multiple module files)
@qavbox Жыл бұрын
There is no such inbuilt option to modify the order, but you can use this plugin to customise order of purest execution pypi.org/project/pytest-order/
@Varmaraj073 жыл бұрын
Hi sir where we should mention -sv after pytest Or end of the command in video you have given after pytest but in blog you have given after command pytest test_pytestOptions.py::test_api -sv
@qavbox3 жыл бұрын
It's always after pytest command, in the above also I mentioned after pytest, it's just after the specified test method path.