6760f922e0
Anvil has conflicts with pbr when it's used in setup.py and its usage in anvil doesn't really seem useful or applicable given the amount of pain it causes during packaging and later pip usage (dependencies downloaded and introspected will themselves fail due to the wrong version of pbr that anvil pulled in). So instead of using it, just switch back to using a simpler setup.py file with usage of nosetests for testing (since we don't need parallel tests for anvils tests) to avoid the problems that pbr has caused. Change-Id: I6d3c09a927434abf07fc025638a0860e44b029fa
37 lines
759 B
INI
37 lines
759 B
INI
[tox]
|
|
skipdist = True
|
|
envlist = py26,py27,pep8,pylint
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
install_command = pip install {opts} {packages}
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = nosetests {posargs}
|
|
|
|
[tox:jenkins]
|
|
downloadcache = ~/cache/pip
|
|
|
|
[testenv:pep8]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = flake8 {posargs}
|
|
|
|
[testenv:pylint]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = pylint --rcfile=pylintrc anvil
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[flake8]
|
|
ignore = H102,H302,E501
|
|
builtins = _
|
|
exclude = .venv,.tox,dist,doc,*egg,.git,build
|
|
|
|
[nosetests]
|
|
verbosity = 2
|
|
detailed-errors = 1
|