Fix issue where pytest.raises() doesn't always return Exception instance in py26

Fixes #767
This commit is contained in:
Bruno Oliveira
2015-06-18 21:04:47 -03:00
parent 0431b8bb74
commit eb73db56c7
3 changed files with 12 additions and 0 deletions

View File

@@ -1,6 +1,10 @@
2.7.2 (compared to 2.7.1)
-----------------------------
- fix issue767: pytest.raises value attribute does not contain the exception
instance on Python 2.6. Thanks Eric Siegerman for providing the test
case and Bruno Oliveira for PR.
- Automatically create directory for junitxml and results log.
Thanks Aron Curzon.