
Shouldn't be considered pre-release anymore Also fixed pep8 test. Change-Id: I9ad41ce6e60736a944af4195542c409f59e110b2
23 lines
361 B
INI
23 lines
361 B
INI
[tox]
|
|
envlist = py26,py27,pep8
|
|
|
|
[testenv]
|
|
deps =
|
|
coverage
|
|
nose
|
|
mock
|
|
flake8
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
commands = nosetests -d -v --with-coverage --cover-inclusive --cover-package simport []
|
|
|
|
[testenv:pep8]
|
|
commands =
|
|
flake8
|
|
|
|
[flake8]
|
|
ignore = H405
|
|
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,timex/__init__.py
|
|
show-source = True
|