Skip to content

Commit 16d63e7

Browse files
committed
fix lint
1 parent e00b7de commit 16d63e7

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

src/buildkite_test_collector/collector/payload.py

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ class TestData:
118118

119119
@classmethod
120120
def start(cls, id: UUID,
121+
*,
121122
scope: str,
122123
name: str,
123124
location: Optional[str] = None,

src/buildkite_test_collector/pytest_plugin/buildkite_plugin.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ def pytest_runtest_logstart(self, nodeid, location):
1919
self.payload = self.payload.started()
2020

2121
chunks = nodeid.split("::")
22-
scope = "::".join(chunks[:-1])
23-
name = chunks[-1]
24-
file_name = location[0]
25-
location = f"{location[0]}:{location[1]}"
2622

27-
test_data = TestData.start(uuid4(), scope, name, location, file_name)
23+
test_data = TestData.start(
24+
uuid4(),
25+
scope="::".join(chunks[:-1]),
26+
name=chunks[-1],
27+
location=location[0],
28+
file_name=f"{location[0]}:{location[1]}"
29+
)
2830
self.in_flight[nodeid] = test_data
2931

3032
def pytest_runtest_logreport(self, report):

tests/buildkite_test_collector/conftest.py

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ def successful_test(history_finished) -> TestData:
1818
scope="wyld stallyns",
1919
name="san dimas meltdown",
2020
location="san_dimas_meltdown.py:1",
21+
file_name="san_dimas_meltdown.py",
2122
result=TestResultPassed(),
2223
history=history_finished
2324
)
@@ -40,6 +41,7 @@ def incomplete_test(history_started) -> TestData:
4041
scope="wyld stallyns",
4142
name="san dimas meltdown",
4243
location="san_dimas_meltdown.py:1",
44+
file_name="san_dimas_meltdown.py",
4345
result=None,
4446
history=history_started
4547
)

0 commit comments

Comments
 (0)