Closed fmck3516 closed 2 weeks ago
Current:
{ ... "tests": [ { "class": 1, "result": "PASSED", "coveredClasses": [0,1,2,3] }, ... ] }
Desired:
... "tests": [ { "class": 1, "tags": ["PASSED"], "coveredClasses": [0,1,2,3] }, ... ] }
This is in preparation for https://github.com/skippy-io/skippy/issues/161 where selected tests will be marked as ALWAYS_EXECUTE:
ALWAYS_EXECUTE
... "tests": [ { "class": 1, "tags": ["PASSED", "ALWAYS_EXECUTE"], "coveredClasses": [0,1,2,3] }, ... ] }
https://github.com/skippy-io/skippy/pull/175 https://github.com/skippy-io/skippy-regression-suite/pull/6
Current:
Desired:
This is in preparation for https://github.com/skippy-io/skippy/issues/161 where selected tests will be marked as
ALWAYS_EXECUTE
: