summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: cde191cbc88f246c9700b71f801806c40562936f (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
[tox]
envlist = docs,pep8,pylint,py35

[testenv]
usedevelop = True
deps =
  -r{toxinidir}/requirements.txt
  -r{toxinidir}/test-requirements.txt
commands =
  coverage erase
  nosetests-3.4 --with-xunit \
  --with-coverage \
  --cover-tests \
  --cover-package=apex \
  --cover-xml \
  --cover-min-percentage 94 \
  apex/tests
  coverage report

[testenv:pep8]
basepython = python3
commands = flake8 --exclude .build,build --ignore=F401

[testenv:py35]
basepython = python3