Provide a Composio client instance for all tests.
()
| 30 | |
| 31 | @pytest.fixture(scope="session") |
| 32 | def composio_client(): |
| 33 | """Provide a Composio client instance for all tests.""" |
| 34 | from composio import Composio |
| 35 | |
| 36 | return Composio() |
| 37 | |
| 38 | |
| 39 | @pytest.fixture(scope="session") |
nothing calls this directly
no test coverage detected
searching dependent graphs…