summaryrefslogtreecommitdiff
path: root/tox.ini
blob: a4bee824d48a72b036db00652a59d9437516ba9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[tox]
envlist = py{39,38,37,36},pypy3

[testenv]
deps=
    -e .
commands =
    python -m unittest test

[testenv:format]
deps = pycodestyle
allowlist_externals = sh
commands = sh format.sh

[testenv:coverage]
deps = coverage
commands =
    coverage run --source=slugify test.py