summaryrefslogtreecommitdiff
path: root/circle.yml
blob: 90b40c2770d9128df8066c6eeecccebc0d7c322d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
machine:
  environment:
    LANG: en_US.UTF-8

  post:
    - pyenv global 2.7 3.6

dependencies:
  override:
    - pip install -U pip
    - pip install pipenv
    - pipenv install --dev

test:
  override:
    - make test

  post:
    - bash <(curl -s https://codecov.io/bash)