File: tox.ini

package info (click to toggle)
python-inflect 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 560 kB
  • sloc: python: 4,855; makefile: 14
file content (31 lines) | stat: -rw-r--r-- 398 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
22
23
24
25
26
27
28
29
30
31
[tox]
envlist = python

[tox:travis]
pypy = pypy
pypy3 = pypy3
2.7 = py27
3.4 = py34
3.5 = py35
3.6 = py36, black
3.7 = py37, flake8

[testenv]
deps =
    pytest
    pytest-cov
    nose
    six
commands = pytest --cov=inflect {posargs}

[testenv:flake8]
deps = flake8
commands =
    flake8
skip_install = true

[testenv:black]
deps = black
commands =
    black --check --diff .
skip_install = true