File: tox.ini

package info (click to toggle)
kanboard-cli 0.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 172 kB
  • sloc: python: 265; makefile: 6
file content (21 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py27,py34,py35,pep8

[testenv]
deps =
    -r{toxinidir}/requirements.txt
    -r{toxinidir}/test-requirements.txt
commands = nosetests --tests kanboard_cli.tests

[testenv:venv]
commands = {posargs}

[testenv:pep8]
commands =
    flake8 {posargs}

[flake8]
ignore = E125,E123,E129
show-source = True
max-line-length = 120
exclude = .git,.venv,.tox,build,dist,*egg