コード例 #1
0
def do_init(_args):
    """Initialize the current working directory as environment repo"""
    repo = init_repo(Path.cwd())
    log.info('Initialized empty alfa-ci repository in %s', repo.location)
コード例 #2
0
ファイル: test_repo.py プロジェクト: dennisklein/alfa-ci
def test_init_repo(tmp_path):
    init_repo(tmp_path)
コード例 #3
0
ファイル: test_repo.py プロジェクト: dennisklein/alfa-ci
def test_init_repo_existing(empty_initialized_repo):
    with pytest.raises(Error):
        init_repo(empty_initialized_repo)
コード例 #4
0
ファイル: conftest.py プロジェクト: FairRootGroup/alfa-ci
def empty_initialized_repo(tmp_path):
    """Create empty repo"""
    init_repo(str(tmp_path))
    return tmp_path