from enum import Enum class TestResult(Enum): SUCCEEDED = "succeeded" FAILED = "failed" UNSUPPORTED = "unsupported"