grim/local-pipelines

f5dcfe140c79
Merged in seanfarley/local-pipelines (pull request #4)

Prevent secret environment variable (e.g. passwords) from being sent via command line
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