1
1
"""Buildkite test collector plugin for Pytest"""
2
2
import json
3
-
4
3
from uuid import uuid4
5
4
6
5
from ..collector .payload import TestData
@@ -29,26 +28,21 @@ def pytest_runtest_logstart(self, nodeid, location):
29
28
)
30
29
self .in_flight [nodeid ] = test_data
31
30
32
- def pytest_runtest_teardown (self , item ):
33
- """pytest_runtest_hook hook callback to collect execution_tag"""
34
- test_data = self .in_flight .get (item .nodeid )
35
-
36
- if test_data :
37
- tags = item .iter_markers ("execution_tag" )
38
- for tag in tags :
39
- test_data .tag_execution (tag .args [0 ], tag .args [1 ])
40
-
41
31
def pytest_runtest_logreport (self , report ):
42
- """pytest_runtest_logreport hook callback"""
43
- if report .when != 'teardown' :
32
+ """pytest_runtest_logreport hook callback to get test outcome after test call"""
33
+
34
+ # This hook is called three times during the lifecycle of a test:
35
+ # after the setup phase, the call phase, and the teardown phase.
36
+ # Since we want to capture the outcome from the call phase,
37
+ # we only proceed when this hook is triggered following the call phase.
38
+ # See: https://github.com/buildkite/test-collector-python/pull/45
39
+ if report .when != 'call' :
44
40
return
45
41
46
42
nodeid = report .nodeid
47
43
test_data = self .in_flight .get (nodeid )
48
44
49
45
if test_data :
50
- test_data = test_data .finish ()
51
-
52
46
if report .passed :
53
47
test_data = test_data .passed ()
54
48
@@ -58,7 +52,23 @@ def pytest_runtest_logreport(self, report):
58
52
if report .skipped :
59
53
test_data = test_data .skipped ()
60
54
61
- del self .in_flight [nodeid ]
55
+ # TestData is immutable.
56
+ # We need to replace the test_data in `in_flight` with updated test_data,
57
+ # so we can get the correct result when we process it during the teardown hook.
58
+ self .in_flight [nodeid ] = test_data
59
+
60
+ def pytest_runtest_teardown (self , item ):
61
+ """pytest_runtest_hook hook callback to mark test as finished and add it to the payload"""
62
+ test_data = self .in_flight .get (item .nodeid )
63
+
64
+ if test_data :
65
+ test_data = test_data .finish ()
66
+
67
+ tags = item .iter_markers ("execution_tag" )
68
+ for tag in tags :
69
+ test_data = test_data .tag_execution (tag .args [0 ], tag .args [1 ])
70
+
71
+ del self .in_flight [item .nodeid ]
62
72
self .payload = self .payload .push_test_data (test_data )
63
73
64
74
def save_payload_as_json (self , path ):
0 commit comments