Skip to content

Commit

Permalink
Create a runner interface for CLI 0.0.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
salsolatragus committed Apr 20, 2018
1 parent 028d416 commit cd74661
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion mubench.pipeline/data/runner_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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.

0 comments on commit cd74661

Please sign in to comment.