skippy-io / skippy

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

Replace failed-tests.txt with tags.txt #176

Closed fmck3516 closed 2 weeks ago

fmck3516 commented 2 weeks ago

Currently, Skippy generates a failed-tests.txt file with a list of failing tests:

com.example.FooTest

Replace this with a tags.txt file:

com.example.FooTest=FAILED
com.example.BarTest=PASSED

This will make it easy to add support for future tags:

com.example.FooTest=FAILED
com.example.BarTest=PASSED
com.example.BarTest=ALWAYS_EXECUTE
fmck3516 commented 2 weeks ago

https://github.com/skippy-io/skippy/pull/177 https://github.com/skippy-io/skippy-regression-suite/pull/7