New issue 655: sys.excinfo leaks into fixtures on python3 https://bitbucket.org/hpk42/pytest/issue/655/sysexcinfo-leaks-into-fixtures-on-python3
Ronny Pfannschmidt:
```
import sys
import pytest
@pytest.fixture
def leak():
#fails
assert sys.exc_info() == (None, None, None)
def test_leak(leak):
assert sys.exc_info() == (None, None, None)
```
_______________________________________________
pytest-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pytest-commit
