> For the complete documentation index, see [llms.txt](https://developer.harness.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.harness.io/open-source/use-harness-open-source/pipelines-1/samples/python.md).

# Python

This guide covers configuring continuous integration pipelines for Python projects.

## Build and Test <a href="#build-and-test" id="build-and-test"></a>

In the below example we demonstrate a pipeline that executes `pip install` and `pytest` commands. These commands are executed inside a Docker container, downloaded at runtime from DockerHub.

```yaml
kind: pipeline
spec:
  stages:
  - type: ci
    spec:
      steps:
      - name: test
        type: run
        spec:
          container: python
          script: |-
            pip install -r requirements.txt
            pytest
```

Please note that you can use any Docker image in your pipeline from any Docker registry. You can use the official python [images](https://hub.docker.com/r/_/python/), or you can bring your own.

## Test Multiple Versions <a href="#test-multiple-versions" id="test-multiple-versions"></a>

You can configure multiple, containerized steps to test against multiple versions of Python.

```yaml
kind: pipeline
spec:
  stages:
  - type: ci
    spec:
      steps:
      - name: test 2
        type: run
        spec:
          container: python:2
          script: |-
            pip install -r requirements.txt
            pytest

      - name: test 3.3
        type: run
        spec:
          container: python:3.3
          script: |-
            pip install -r requirements.txt
            pytest

      - name: test 3.4
        type: run
        spec:
          container: python:3.4
          script: |-
            pip install -r requirements.txt
            pytest
```
