Skip to content

Commit a497c0a

Browse files
committed
fix(ci): fix warnings on always_true()
Signed-off-by: Varsha GS <varsha.gs@ibm.com>
1 parent e0fe546 commit a497c0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ testpaths =
88
tests
99
tests_aws
1010
markers =
11-
original: mark test to use the original method instead of the mocked ones under `conftest.py`
11+
original: mark test to use the original method instead of the mocked ones under `conftest.py`

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def context(span: InstanaSpan) -> Context:
134134
return set_span_in_context(span)
135135

136136

137-
def always_true(_: object) -> bool:
137+
def always_true(_: object, *args: object, **kwargs: object) -> bool:
138138
return True
139139

140140

0 commit comments

Comments
 (0)