Fix pytest collection warning (#3651)

Fixes a pytest collection warning because the test class starts with the
prefix "Test"
This commit is contained in:
Eugene Yurtsev 2023-04-27 12:51:43 -04:00 committed by GitHub
parent 0cf890eed4
commit 055f58960a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 = """{ DEF_RESULT = """{
"action": "Update", "action": "Update",
"action_input": "The PydanticOutputParser class is powerful", "action_input": "The PydanticOutputParser class is powerful",