Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

개요

이 가이드에서는 Docker 컨테이너에서 Python 소프트웨어 프로젝트를 빌드하고 테스트하기 위해 Bitbucket Pipelines를 사용하는 방법을 보여줍니다.

Bitbucket Pipelines는 작성 시점에 계정 당 무료 50 분을 포함합니다. 작업 영역(Workspace)에서 Settings > Plan details를 클릭하여 해당 월의 계정 사용 시간을 확인할 수 있습니다

파이프라인을 직접 설정는 경우, 파이프라인이 빌드를 정의하는데 사용하는 bitbucket-pipelines.yml 파일에서 대부분을 구성하게 됩니다.

Docker로 Python 버전 지정

Bitbucket Pipelines는 구성 파일의 시작 부분에 지정한 이미지를 사용하여 Docker 컨테이너의 모든 빌드를 실행합니다. Docker Hub의 official Python Docker images 중 하나를 사용하여 Bitbucket Pipelines와 함께 Python을 쉽게 사용할 수 있습니다. 기본 Python 이미지를 사용하는 경우 종속성 관리를 돕기 위해 기본적으로 설치된 pip가 함께 제공됩니다.

예를 들어 Python 3.7.2를 bitbucket-pipelines.yml 파일 시작 부분에 명시하여 사용할 수 있습니다.

image: python:3.7.2
pipelines:
  default:
    - step:
        script:
          - python --version

다른 버전의 Python을 사용하려면 Python Docker 이미지의 태그를 변경하기 만하면됩니다. 아래 예제는 Python 3.5.1로 컨테이너를 시작합니다.

image: python:3.5.1

지원되는 모든 Python 버전 및 해당 이미지 태그 목록은 https://hub.docker.com/r/library/python/를 참조하세요.

online validator로 bitbucket-pipelines.yml 파일의 유효성을 확인할 수 있습니다.

종속성 설치

requirements.txt 파일을 사용하는 경우  스크립트 시작 부분에서 pip 를 실행  하여 모든 종속성을 설치할 수 있습니다.

image: python:3.7.2
pipelines:
  default:
    - step:
        script:
          - pip install -r requirements.txt

pip install 명령을 사용하여 종속성을 설치할 수도 있습니다.

image: python:3.7.2
pipelines:
  default:
    - step:
        script:
          - pip install django

Testing

애플리케이션을 테스트하려면 로컬에서 실행하는 것과 동일한 명령을 bitbucket-pipelines.yml 파일에 추가하면 됩니다. 다음은 특정 Python 도구에 대한 몇 가지 예제입니다.

PyUnit

PyUnit 테스트를 실행하는 것은 매우 간단합니다.

image: python:3.7.2
pipelines:
  default:
    - step:
        script:
          - python -m unittest discover tests/

Django

로컬에서 실행하는 것과 동일하게 Django 테스트를 실행할 수 있습니다. Django가 Pipelines 환경에도 설치되어 있는지 확인하십시오.

image: python:3.7.2
pipelines:
  default:
    - step:
        script:
          - pip install django
          - python manage.py test

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.