[python] Python을위한 “예쁜”지속적인 통합

이것은 약간 .. 헛된 질문이지만 BuildBot의 출력은보기에 특히 좋지 않습니다 ..

예를 들어 ..

.. 그리고 다른 것들, BuildBot 은 오히려 .. 고풍 스럽게 보입니다.

저는 현재 Hudson을 사용하고 있지만 매우 Java 중심적입니다 ( 이 가이드를 사용 하면 BuildBot보다 설정이 더 쉽고 더 많은 정보를 생성했습니다).

기본적으로 : Python을 겨냥한 지속적인 통합 시스템이 있습니까?


업데이트 : 이번 이후로 Jenkins 프로젝트는 패키지의 커뮤니티 버전으로 Hudson을 대체했습니다. 원저자도이 프로젝트로 이동했습니다. Jenkins는 이제 Ubuntu / Debian, RedHat / Fedora / CentOS 등의 표준 패키지입니다. 다음 업데이트는 여전히 기본적으로 정확합니다. Jenkins 로이 작업을 수행하는 시작점 은 다릅니다.

업데이트 : 몇 가지 대안을 시도한 후 Hudson을 고수 할 것이라고 생각합니다. 무결성 은 훌륭하고 단순했지만 매우 제한적이었습니다. 저는 Buildbot 이제가 사용 하던 것처럼 단일 머신에서 모든 것을 실행하는 것보다 수많은 빌드 슬레이브를 갖는 데 더 적합하다고 생각합니다.

Python 프로젝트를 위해 Hudson을 설정하는 것은 매우 간단합니다.

  • http://hudson-ci.org/ 에서 Hudson 다운로드
  • 함께 실행 java -jar hudson.war
  • 기본 주소에서 웹 인터페이스를 엽니 다. http://localhost:8080
  • Hudson, 플러그인 관리로 이동하여 “업데이트”또는 유사 항목을 클릭합니다.
  • Git 플러그인을 설치합니다 ( gitHudson 전역 환경 설정에서 경로 를 설정해야했습니다 ).
  • 새 프로젝트 생성, 저장소 입력, SCM 폴링 간격 등
  • 아직 설치 하지 않은 경우 nosetests통해 설치easy_install
  • 빌드 단계에서 nosetests --with-xunit --verbose
  • “JUnit 테스트 결과 보고서 공개”를 선택하고 “테스트 보고서 XML”을 다음으로 설정하십시오. **/nosetests.xml

그게 필요한 전부입니다. 이메일 알림을 설정할 수 있으며 플러그인 을 살펴볼 가치가 있습니다. 현재 Python 프로젝트에 몇 가지를 사용하고 있습니다.

  • SLOCCount 플러그인 을 사용하여 코드 줄을 계산하고 그래프로 표시합니다. sloccount를 별도로 설치해야합니다.
  • PyLint 출력을 구문 분석하기위한 위반 (경고 임계 값을 설정하고 각 빌드에 대한 위반 수를 그래프로 표시 할 수 있음)
  • Cobertura 는 coverage.py 출력을 구문 분석 할 수 있습니다. Nosetest는 다음을 사용하여 테스트를 실행하는 동안 적용 범위를 수집 할 수 있습니다 nosetests --with-coverage(출력을 **/coverage.xml).


답변

NoseXunit 출력 플러그인 을 확인하는 것이 좋습니다 . 다음 명령으로 단위 테스트를 실행하고 범위 검사를 수행하도록 할 수 있습니다.

nosetests --with-xunit --enable-cover

Jenkins 경로로 이동하거나 JUnit 테스트보고를 지원하는 다른 CI 서버를 사용하려는 경우 유용합니다.

마찬가지로 Jenkins 용 위반 플러그인을 사용하여 pylint의 출력을 캡처 할 수 있습니다.


답변

그렇게할지 모르겠다 : Bitten 은 Trac을 작성하는 사람들이 만들고 Trac과 통합됩니다. Apache GumpApache에서 사용하는 CI 도구입니다. 파이썬으로 작성되었습니다.


답변

TeamCity 를 CI 서버로 사용하고 nose를 테스트 러너로 사용하여 큰 성공을 거두었습니다 . nosetests 용 Teamcity 플러그인은 통과 / 실패 카운트, 실패한 테스트에 대한 읽기 쉬운 표시를 제공합니다 (이메일로 전송 가능). 스택이 실행되는 동안 테스트 실패에 대한 세부 정보도 볼 수 있습니다.

물론 여러 컴퓨터에서 실행하는 것과 같은 것을 지원하고 buildbot보다 설정 및 유지 관리가 훨씬 간단합니다.


답변

Buildbot의 폭포 페이지는 상당히 예쁘게 만들 수 있습니다. 다음은 좋은 예입니다. http://build.chromium.org/buildbot/waterfall/waterfall


답변

Atlassian의 Bamboo 는 확실히 확인할 가치가 있습니다. 전체 Atlassian 제품군 (JIRA, Confluence, FishEye 등)은 매우 달콤합니다.


답변

이 스레드는 꽤 오래되었다고 생각하지만 여기에 허드슨에 대한 내 의견이 있습니다.

나는 pip를 사용하기로 결정하고 성공적인 테스트를 통해 hudson이 자동으로 업로드하는 repo (일하기 힘들지만 멋져 보이는 달걀 바구니)를 설정했습니다. 다음은 허드슨 구성 실행 스크립트와 함께 사용하기위한 대략적이고 준비된 스크립트입니다. /var/lib/hudson/venv/main/bin/hudson_script.py -w $ WORKSPACE -p my.package -v $ BUILD_NUMBER, 그냥 넣어 ** / coverage.xml, pylint.txt 및 nosetests.xml 구성 비트 :

#!/var/lib/hudson/venv/main/bin/python
import os
import re
import subprocess
import logging
import optparse

logging.basicConfig(level=logging.INFO,
                    format='%(asctime)s %(levelname)s %(message)s')

#venvDir = "/var/lib/hudson/venv/main/bin/"

UPLOAD_REPO = "http://ldndev01:3442"

def call_command(command, cwd, ignore_error_code=False):
    try:
        logging.info("Running: %s" % command)
        status = subprocess.call(command, cwd=cwd, shell=True)
        if not ignore_error_code and status != 0:
            raise Exception("Last command failed")

        return status

    except:
        logging.exception("Could not run command %s" % command)
        raise

def main():
    usage = "usage: %prog [options]"
    parser = optparse.OptionParser(usage)
    parser.add_option("-w", "--workspace", dest="workspace",
                      help="workspace folder for the job")
    parser.add_option("-p", "--package", dest="package",
                      help="the package name i.e., back_office.reconciler")
    parser.add_option("-v", "--build_number", dest="build_number",
                      help="the build number, which will get put at the end of the package version")
    options, args = parser.parse_args()

    if not options.workspace or not options.package:
        raise Exception("Need both args, do --help for info")

    venvDir = options.package + "_venv/"

    #find out if venv is there
    if not os.path.exists(venvDir):
        #make it
        call_command("virtualenv %s --no-site-packages" % venvDir,
                     options.workspace)

    #install the venv/make sure its there plus install the local package
    call_command("%sbin/pip install -e ./ --extra-index %s" % (venvDir, UPLOAD_REPO),
                 options.workspace)

    #make sure pylint, nose and coverage are installed
    call_command("%sbin/pip install nose pylint coverage epydoc" % venvDir,
                 options.workspace)

    #make sure we have an __init__.py
    #this shouldn't be needed if the packages are set up correctly
    #modules = options.package.split(".")
    #if len(modules) > 1: 
    #    call_command("touch '%s/__init__.py'" % modules[0], 
    #                 options.workspace)
    #do the nosetests
    test_status = call_command("%sbin/nosetests %s --with-xunit --with-coverage --cover-package %s --cover-erase" % (venvDir,
                                                                                     options.package.replace(".", "/"),
                                                                                     options.package),
                 options.workspace, True)
    #produce coverage report -i for ignore weird missing file errors
    call_command("%sbin/coverage xml -i" % venvDir,
                 options.workspace)
    #move it so that the code coverage plugin can find it
    call_command("mv coverage.xml %s" % (options.package.replace(".", "/")),
                 options.workspace)
    #run pylint
    call_command("%sbin/pylint --rcfile ~/pylint.rc -f parseable %s > pylint.txt" % (venvDir, 
                                                                                     options.package),
                 options.workspace, True)

    #remove old dists so we only have the newest at the end
    call_command("rm -rfv %s" % (options.workspace + "/dist"),
                 options.workspace)

    #if the build passes upload the result to the egg_basket
    if test_status == 0:
        logging.info("Success - uploading egg")
        upload_bit = "upload -r %s/upload" % UPLOAD_REPO
    else:
        logging.info("Failure - not uploading egg")
        upload_bit = ""

    #create egg
    call_command("%sbin/python setup.py egg_info --tag-build=.0.%s --tag-svn-revision --tag-date sdist %s" % (venvDir,
                                                                                                              options.build_number,
                                                                                                              upload_bit),
                 options.workspace)

    call_command("%sbin/epydoc --html --graph all %s" % (venvDir, options.package),
                 options.workspace)

    logging.info("Complete")

if __name__ == "__main__":
    main()

배포와 관련하여 다음과 같이 할 수 있습니다.

pip -E /location/of/my/venv/ install my_package==X.Y.Z --extra-index http://my_repo

그리고 사람들은 다음을 사용하여 무언가를 개발할 수 있습니다.

pip -E /location/of/my/venv/ install -e ./ --extra-index http://my_repo

이 항목은 setup.py 및 종속성이 모두 설정된 패키지 당 저장소 구조가 있다고 가정하고 트렁크를 확인하고이 항목을 실행할 수 있습니다.

나는 이것이 누군가를 돕기를 바랍니다.

——최신 정보———

허드슨과 정말 잘 어울리는 epydoc을 추가했습니다. html 폴더로 설정에 javadoc을 추가하십시오.

요즘 pip는 -E 플래그를 제대로 지원하지 않으므로 venv를 별도로 만들어야합니다.


답변

다른 하나 : Shining Panda 는 Python 용 호스팅 도구입니다.