mirror of
https://github.com/FoundationAgents/MetaGPT.git
synced 2026-07-02 16:01:04 +02:00
feature: aioboto3 client
This commit is contained in:
parent
a36d46d6b9
commit
478139c8dc
5 changed files with 198 additions and 3 deletions
|
|
@ -9,7 +9,6 @@
|
|||
from unittest.mock import Mock
|
||||
|
||||
import pytest
|
||||
import pytest_asyncio
|
||||
|
||||
from metagpt.config import Config
|
||||
from metagpt.logs import logger
|
||||
|
|
@ -17,6 +16,8 @@ from metagpt.provider.openai_api import OpenAIGPTAPI as GPTAPI
|
|||
import asyncio
|
||||
import re
|
||||
|
||||
from metagpt.utils.s3 import S3
|
||||
|
||||
|
||||
class Context:
|
||||
def __init__(self):
|
||||
|
|
@ -74,3 +75,7 @@ def proxy():
|
|||
@pytest.fixture(scope="session", autouse=True)
|
||||
def init_config():
|
||||
Config()
|
||||
|
||||
@pytest.fixture(scope="session", autouse=True)
|
||||
def s3():
|
||||
return S3()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue