Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
6 changes: 3 additions & 3 deletions tests/test_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import asyncio
import inspect
import time
import uuid
from concurrent.futures import ThreadPoolExecutor
Expand Down Expand Up @@ -68,7 +68,7 @@ async def test_should_get_flag_value_based_on_method_type(
# Given
# When
method = getattr(no_op_provider_client, get_method)
if asyncio.iscoroutinefunction(method):
if inspect.iscoroutinefunction(method):
flag = await method(flag_key="Key", default_value=default_value)
else:
flag = method(flag_key="Key", default_value=default_value)
Expand Down Expand Up @@ -126,7 +126,7 @@ async def test_should_get_flag_detail_based_on_method_type(
# Given
# When
method = getattr(no_op_provider_client, get_method)
if asyncio.iscoroutinefunction(method):
if inspect.iscoroutinefunction(method):
flag = await method(flag_key="Key", default_value=default_value)
else:
flag = method(flag_key="Key", default_value=default_value)
Expand Down