File: tox.ini

package info (click to toggle)
gcalcli 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,060 kB
  • sloc: python: 2,882; makefile: 7
file content (17 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[tox]
envlist = py35,py36,py37,py38

[testenv]
usedevelop=true
deps = pytest
       pytest-cov
       coverage
       flake8
       vobject

commands=py.test -vv --cov=./gcalcli --pyargs tests {posargs}
         coverage html
         flake8

[flake8]
exclude=.git,__pycache__,venv,.tox,.venv