Skip to content

Commit

Permalink
fix(ci): fix warnings on always_true()
Browse files Browse the repository at this point in the history
Signed-off-by: Varsha GS <[email protected]>
  • Loading branch information
GSVarsha authored and pvital committed Oct 4, 2024
1 parent 0928e7e commit 5f3464f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ testpaths =
tests
tests_aws
markers =
original: mark test to use the original method instead of the mocked ones under `conftest.py`
original: mark test to use the original method instead of the mocked ones under `conftest.py`
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def context(span: InstanaSpan) -> Context:
return set_span_in_context(span)


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


Expand Down

0 comments on commit 5f3464f

Please sign in to comment.