File: tox.ini

package info (click to toggle)
python-log-symbols 0.0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 91; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[tox]
envlist =
    py27,
    py34,
    py35,
    py36,
    py37,
    lint
skip_missing_interpreters =
    True

[testenv]
# See https://github.com/pytest-dev/pytest/pull/5222#issuecomment-492428610
download = True
deps =
    -r{toxinidir}/requirements.txt
    -r{toxinidir}/requirements-dev.txt
recreate =
    True
setenv =
    LANG=en_US.UTF-8
commands =
    nosetests --cover-package=log_symbols --with-coverage --cover-erase --cover-branches --nologcapture

[testenv:lint]
commands =
    pylint --errors-only --rcfile={toxinidir}/.pylintrc --output-format=colorized log_symbols