From cd746611c1168448a998d3c38a7874245ff5a272 Mon Sep 17 00:00:00 2001 From: Sven Amann Date: Fri, 20 Apr 2018 13:04:21 +0200 Subject: [PATCH] Create a runner interface for CLI 0.0.13. --- mubench.pipeline/data/runner_interface.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/mubench.pipeline/data/runner_interface.py b/mubench.pipeline/data/runner_interface.py index 0691a4710..930c316b1 100644 --- a/mubench.pipeline/data/runner_interface.py +++ b/mubench.pipeline/data/runner_interface.py @@ -224,7 +224,7 @@ def changelog(): # noinspection PyPep8Naming -class RunnerInterface_0_0_11(RunnerInterface_0_0_8): +class RunnerInterface_0_0_11(RunnerInterface_0_0_10): @staticmethod def version(): return StrictVersion("0.0.11") @@ -238,3 +238,14 @@ def _get_cli_args(detector_arguments: Dict[str, str]): detector_arguments["target_src_path"] = ":".join(detector_arguments["target_src_path"]) detector_arguments["target_classpath"] = ":".join(detector_arguments["target_classpath"]) return CommandLineArgsRunnerInterface._get_cli_args(detector_arguments) + + +# noinspection PyPep8Naming +class RunnerInterface_0_0_13(RunnerInterface_0_0_11): + @staticmethod + def version(): + return StrictVersion("0.0.13") + + @staticmethod + def changelog(): + return "" # Only changed Java-side interface.