summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 0020bba226438ff2e844447bf351e9c3fae42639 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[tox]
envlist = py35
skipsdist = True

[testenv]
changedir = {toxinidir}/app
envlogdir = {toxinidir}/logs


[testenv:py35]
basepython = python3.5
deps = -r{toxinidir}/app/requirements.txt
       coverage

commands =  python --version
            coverage erase
            coverage run --source {toxinidir}/app/toscalib -m unittest
            coverage report
            coverage xml