dumb-init/circle.yml

19 lines
471 B
YAML
Raw Permalink Normal View History

2015-09-05 03:06:09 +03:00
machine:
services:
- docker
dependencies:
2015-09-17 03:16:05 +03:00
# 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.
2015-09-05 03:06:09 +03:00
override:
- /bin/true
test:
override:
2016-07-02 21:36:30 +03:00
- ci/circle:
2015-09-05 03:06:09 +03:00
parallel: true