This repository is an example Buildkite pipeline that tests a Python project using pipenv.
👉 See this example in action: buildkite/python-pipenv-example
See the full Getting Started Guide for step-by-step instructions on how to get this running, or try it yourself:

This example:
- Assumes Python and pipenv are installed on the agent
- Installs dependencies with
pipenv install --deploy --dev
- Runs tests using
pipenv run py.test
Example pipeline step:
steps:
- label: ":python: Test"
commands:
- pipenv install --deploy --dev
- pipenv run py.test
💡 Looking for a Docker-based setup instead? Check out the Python Docker Example.
See LICENSE (MIT)