File: circle.yml

package info (click to toggle)
pyaxmlparser 0.3.31-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,552 kB
  • sloc: python: 3,089; xml: 2,517; sh: 9; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 286 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
machine:
  python:
    version: 3.6.0

dependencies:
  override:
    - pip install -r requirements.txt
    - pip install codecov

test:
  override:
    - flake8
    - coverage run --source=pyaxmlparser -m pytest -vx --ff
    - coverage report -m
  post:
    - codecov -t $CODECOV_TOKEN