We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ec74a commit a67cb5dCopy full SHA for a67cb5d
1 file changed
fluster/fluster.py
@@ -252,6 +252,8 @@ def _normalize_context(self, ctx: Context) -> None:
252
ctx.test_suites_names = [x.lower() for x in ctx.test_suites_names]
253
if ctx.decoders_names:
254
ctx.decoders_names = [x.lower() for x in ctx.decoders_names]
255
+ # Workaround to avoid BC break for prev commit. Delete when next MAYOR version
256
+ ctx.decoders_names = [x[0:-7] if "-gst1.0" in x else x for x in ctx.decoders_names]
257
if ctx.test_vectors_names:
258
ctx.test_vectors_names = [x.lower() for x in ctx.test_vectors_names]
259
if ctx.skip_vectors_names:
0 commit comments