File: circle.yml

package info (click to toggle)
dumb-init 1.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: python: 677; ansic: 260; makefile: 86; sh: 49
file content (18 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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