dumb-init/circle.yml
2015-09-16 17:23:45 -07:00

19 lines
471 B
YAML

machine:
services:
- docker
dependencies:
# Without overriding, Circle CI infers that it should run `python setup.py
# install` on the host, which we don't want (instead we run all our tests
# in Docker containers).
#
# Overriding with an empty list or list with an empty string doesn't seem
# to work, so we use a little hackery.
override:
- /bin/true
test:
override:
- CI/circle:
parallel: true