blob: 83b1a58c3b85759c7d11337071f03c52e6e85a48 (
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 --omit="{toxinidir}/app/toscalib/tosca*.py" -m unittest
coverage report
coverage xml
|