We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eb5eb0 commit 95db680Copy full SHA for 95db680
tests/functional/conftest.py
@@ -6,7 +6,7 @@
6
import time
7
import uuid
8
from subprocess import check_output
9
-from typing import Optional
+from typing import Optional, Sequence
10
11
import pytest
12
import requests
@@ -145,7 +145,9 @@ def set_token(container: str, fixture_dir: pathlib.Path) -> str:
145
return output
146
147
148
-def pytest_report_collectionfinish(config, startdir, items):
+def pytest_report_collectionfinish(
149
+ config: pytest.Config, start_path: pathlib.Path, items: Sequence[pytest.Item]
150
+):
151
return [
152
"",
153
"Starting GitLab container.",
0 commit comments