grim/local-pipelines

bcf5bb4bd83f
pipeline: add new property private_env

This is currently unused but will return all the env vars that were
passed in as VAR (as opposed to ones that were VAR=FOO).
image: python:3
pipelines:
default:
- step:
script:
- set -ex
- find . -type f -iname "*.pyc" -exec rm -f {} \; || true
- find . -type d -iname __pycache__ -exec rm -rf {} \; || true
- pip install -r dev-requirements.txt
- flake8
- PYTHONPATH=$(pwd) py.test --color=auto --cov=pipelines --cov-report=term-missing tests