re-uploading work
This commit is contained in:
10
tests/generated_client/models/test_status.py
Normal file
10
tests/generated_client/models/test_status.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from enum import Enum
|
||||
|
||||
class TestStatus(str, Enum):
|
||||
ERROR = "error"
|
||||
FAILED = "failed"
|
||||
PASSED = "passed"
|
||||
SKIPPED = "skipped"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
||||
Reference in New Issue
Block a user