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 54957bb commit 1a2658dCopy full SHA for 1a2658d
packages/toolbox-core/tests/test_e2e.py
@@ -12,11 +12,12 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
+from inspect import Parameter, signature
16
+from typing import Optional
17
+
18
import pytest
19
import pytest_asyncio
20
from pydantic import ValidationError
-from inspect import signature, Parameter
-from typing import Optional
21
22
from toolbox_core.client import ToolboxClient
23
from toolbox_core.tool import ToolboxTool
@@ -221,6 +222,7 @@ async def test_run_tool_param_auth_no_field(
221
222
):
223
await tool()
224
225
226
@pytest.mark.asyncio
227
@pytest.mark.usefixtures("optional_param_server")
228
class TestOptionalParams:
0 commit comments