summaryrefslogtreecommitdiff
path: root/tox.ini
blob: c368ee79579f5f9f1ecf3c3523f14c9b645c4b9b (plain)
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 = packaging, pep8, py3pep8, py27, py33, py34, pypy

[testenv]
deps =
    coverage
    pytest
commands =
    coverage run --source unpaddedbase64 -m pytest
    coverage report -m --fail-under 100

[testenv:packaging]
deps =
    check-manifest
commands = check-manifest

[testenv:pep8]
basepython = python2.7
deps =
    flake8
commands = flake8 .

[testenv:py3pep8]
basepython = python3.4
deps =
    flake8
commands = flake8 .