I'm running a Python unittest in pycharm. This executes the command:
/<path>/python /<path>/_jb_pytest_runner.py --target my_function_test_base.py::MyFunctionTestBase
Launching pytest with arguments my_function_test_base.py::MyFunctionTestBase in //tests
I would like to add a pytest option --tb=1
that I found in this answer: Make Python unittest show AssertionError but no Traceback
I don't know how to do that under PyCharm.