Pytest's `--tb=short` option is ignored when combined with the `--looponfail` and `-n2` options of `pytest-xdist`. #### To reproduce: ```python # foo.py def a(): b() def b(): c() def c(): assert False ``` ```python # test_foo.py from foo import a def test_foo(): a() ``` ```commandline $ pytest --tb=short -n2 --looponfail test_foo.py ... # long-style traceback displayed, --tb=short option ignored. ```