Fix pytest collection warning (#3651)

Fixes a pytest collection warning because the test class starts with the
prefix "Test"
fix_agent_callbacks
Eugene Yurtsev 1 year ago committed by GitHub
parent 0cf890eed4
commit 055f58960a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,6 +23,10 @@ class TestModel(BaseModel):
)
# Prevent pytest from trying to run tests on TestModel
TestModel.__test__ = False # type: ignore[attr-defined]
DEF_RESULT = """{
"action": "Update",
"action_input": "The PydanticOutputParser class is powerful",

Loading…
Cancel
Save