skippy-io / skippy

Mono-repo for all Skippy projects.
https://www.skippy.io
Apache License 2.0
19 stars 2 forks source link

Replace result field in test-imact-analysis.json with tags array #174

Closed fmck3516 closed 2 weeks ago

fmck3516 commented 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:

    ...
    "tests": [
        {
            "class": 1,
            "tags": ["PASSED", "ALWAYS_EXECUTE"],
            "coveredClasses": [0,1,2,3]
        },
        ...
    ]
}
fmck3516 commented 2 weeks ago

https://github.com/skippy-io/skippy/pull/175 https://github.com/skippy-io/skippy-regression-suite/pull/6