File: tox.ini

package info (click to toggle)
python-spinners 0.0~git20200220.a73d561-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 912 kB
  • sloc: python: 961; makefile: 3
file content (23 lines) | stat: -rw-r--r-- 439 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
[tox]
envlist =
    py27,
    py35,
    py36,
    py37,
    lint
skip_missing_interpreters =
    True

[testenv]
deps =
    -r{toxinidir}/requirements-dev.txt
recreate =
    True
setenv =
    LANG=en_US.UTF-8
commands =
    nosetests --cover-package=spinners --with-coverage --cover-erase --cover-branches --nologcapture

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