File: circle.yml

package info (click to toggle)
python-httpretty 1.1.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 712 kB
  • sloc: python: 4,233; makefile: 72
file content (19 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (5)
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)