summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 6a671ea629d26790dff622e017d11a7f49fbd138 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[tox]
skipsdist=True
envlist = py27,py3,style
setupdir = imagescanner/

[testenv]
distribute = False
commands =
   {envpython} --version
    pytest --version
    pytest --cov=imagescanner 
deps = flake8
    pytest-cov
    pytest

[testenv:style]
commands = flake8

[testenv:py27]
basepython=python2.7

[testenv:py3]
basepython=python3.6