stestr init Command

Initialise a new repository.

class stestr.commands.init.Init(app, app_args, cmd_name=None)[source]

Create a new repository.

take_action(parsed_args)[source]

Override to do something useful.

The returned value will be returned by the program.

stestr.commands.init.init(repo_url=None, stdout=<_io.TextIOWrapper name='<stdout>' mode='w' encoding='UTF-8'>)[source]

Initialize a new repository

This function will create initialize a new repostiory if one does not exist. If one exists the command will fail.

Note this function depends on the cwd for the repository if repo_url is not specified it will use the repository located at CWD/.stestr

Parameters:repo_url (str) – The url of the repository to use.
Return return_code:
 The exit code for the command. 0 for success and > 0 for failures.
Return type:int