grim/local-pipelines

7b8b7a7c65e9
pipeline: actually kill the docker process with ctrl-c

By using '-it' to the docker process, ctrl-c is directly sent to docker
so that it kills itself and automatically cleans up.
image: python:3
pipelines:
default:
- step:
script:
- set -ex
- pip install -r dev-requirements.txt
- flake8
- step:
image: python:2
script:
- set -ex
- pip install -r dev-requirements.txt
- flake8