I have just started learning pytest and was told to use the following code to launch pytest but given no explanation about what everything did.
[pytest.main(\["-v", "--tb=line", "-rN", __file__\])][1]
Between Google and the pytest website (https://docs.pytest.org/) I have figured out everything else, I just cannot find what the "-rN" segment does. When I run the test without that segment in the code, it seems to not have any difference. Can anyone provide any insights and hopefully some documentation I can study as well?
Test result with full code segment.
Test result with without the code segment in question
pytest.main(["-v", "--tb=line", __file__])
Test Result without the code segment in question.
The only difference that I can find is that it runs faster without the code segment in question.