Code:
JavaScript
x
13
13
1
# coding=utf-8
2
import pytest
3
4
5
def whatever():
6
return 9/0
7
8
def test_whatever():
9
try:
10
whatever()
11
except ZeroDivisionError as exc:
12
pytest.fail(exc, pytrace=True)
13
Output:
JavaScript
1
20
20
1
================================ test session starts =================================
2
platform linux2 -- Python 2.7.3 -- py-1.4.20 -- pytest-2.5.2
3
plugins: django, cov
4
collected 1 items
5
6
pytest_test.py F
7
8
====================================== FAILURES ======================================
9
___________________________________ test_whatever ____________________________________
10
11
def test_whatever():
12
try:
13
whatever()
14
except ZeroDivisionError as exc:
15
> pytest.fail(exc, pytrace=True)
16
E Failed: integer division or modulo by zero
17
18
pytest_test.py:12: Failed
19
============================== 1 failed in 1.16 seconds ==============================
20
How to make pytest print traceback, so I would see where in the whatever
function an exception was raised?
Advertisement
Answer
pytest.raises(Exception)
is what you need.
Code
JavaScript
1
45
45
1
import pytest
2
3
def test_passes():
4
with pytest.raises(Exception) as e_info:
5
x = 1 / 0
6
7
def test_passes_without_info():
8
with pytest.raises(Exception):
9
x = 1 / 0
10
11
def test_fails():
12
with pytest.raises(Exception) as e_info:
13
x = 1 / 1
14
15
def test_fails_without_info():
16
with pytest.raises(Exception):
17
x = 1 / 1
18
19
# Don't do this. Assertions are caught as exceptions.
20
def test_passes_but_should_not():
21
try:
22
x = 1 / 1
23
assert False
24
except Exception:
25
assert True
26
27
# Even if the appropriate exception is caught, it is bad style,
28
# because the test result is less informative
29
# than it would be with pytest.raises(e)
30
# (it just says pass or fail.)
31
32
def test_passes_but_bad_style():
33
try:
34
x = 1 / 0
35
assert False
36
except ZeroDivisionError:
37
assert True
38
39
def test_fails_but_bad_style():
40
try:
41
x = 1 / 1
42
assert False
43
except ZeroDivisionError:
44
assert True
45
Output
JavaScript
1
34
34
1
============================================================================================= test session starts ==============================================================================================
2
platform linux2 -- Python 2.7.6 -- py-1.4.26 -- pytest-2.6.4
3
collected 7 items
4
5
test.py ..FF..F
6
7
=================================================================================================== FAILURES ===================================================================================================
8
__________________________________________________________________________________________________ test_fails __________________________________________________________________________________________________
9
10
def test_fails():
11
with pytest.raises(Exception) as e_info:
12
> x = 1 / 1
13
E Failed: DID NOT RAISE
14
15
test.py:13: Failed
16
___________________________________________________________________________________________ test_fails_without_info ____________________________________________________________________________________________
17
18
def test_fails_without_info():
19
with pytest.raises(Exception):
20
> x = 1 / 1
21
E Failed: DID NOT RAISE
22
23
test.py:17: Failed
24
___________________________________________________________________________________________ test_fails_but_bad_style ___________________________________________________________________________________________
25
26
def test_fails_but_bad_style():
27
try:
28
x = 1 / 1
29
> assert False
30
E assert False
31
32
test.py:43: AssertionError
33
====================================================================================== 3 failed, 4 passed in 0.02 seconds ======================================================================================
34
Note that e_info
saves the exception object so you can extract details from it. For example, if you want to check the exception call stack or another nested exception inside.