File tree Expand file tree Collapse file tree 9 files changed +8
-9
lines changed Expand file tree Collapse file tree 9 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,6 @@ filterwarnings = [
179179# Default to basic type checking, but override for specific directories
180180typeCheckingMode = " basic"
181181pythonVersion = " 3.12"
182- pythonPath = [" ." ]
183182
184183exclude = [
185184 " _dev" ,
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from .. .utils import assert_matches_type
1212from agentex .types .messages import BatchCreateResponse , BatchUpdateResponse
1313
1414base_url = os .environ .get ("TEST_API_BASE_URL" , "http://127.0.0.1:4010" )
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import (
1313 Agent ,
1414 AgentRpcResponse ,
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import Event , EventListResponse
1313
1414base_url = os .environ .get ("TEST_API_BASE_URL" , "http://127.0.0.1:4010" )
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import (
1313 TaskMessage ,
1414 MessageListResponse ,
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import Span , SpanListResponse
1313from agentex ._utils import parse_datetime
1414
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import State , StateListResponse
1313
1414base_url = os .environ .get ("TEST_API_BASE_URL" , "http://127.0.0.1:4010" )
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import Task , TaskListResponse
1313from agentex .types .shared import DeleteResponse
1414
Original file line number Diff line number Diff line change 88import pytest
99
1010from agentex import Agentex , AsyncAgentex
11- from tests .utils import assert_matches_type
11+ from . .utils import assert_matches_type
1212from agentex .types import AgentTaskTracker , TrackerListResponse
1313
1414base_url = os .environ .get ("TEST_API_BASE_URL" , "http://127.0.0.1:4010" )
You can’t perform that action at this time.
0 commit comments