def get_macsio_command(self): """Get the MacsioCommand object. Returns: MacsioCommand: object defining the macsio command """ # Create the macsio command path = self.params.get("macsio_path", default="") macsio = MacsioCommand(path) macsio.get_params(self) # Create all the macsio output files in the same directory as the other # test log files macsio.set_output_file_path() return macsio
def get_macsio_command(self): """Get the MacsioCommand object. Returns: MacsioCommand: object defining the macsio command """ # Create the macsio command test_repo = self.params.get("macsio", "/run/test_repo/*", "") macsio = MacsioCommand(test_repo) macsio.get_params(self) # Create all the macsio output files in the same directory as the other # test log files macsio.set_output_file_path() return macsio