Caching is enabled by default from pip version 6.0 More info: https://testrun.org/tox/latest/config.html#confval-downloadcache=path https://pip.pypa.io/en/stable/reference/pip_install/#caching Change-Id: I64c83c96db5c00b04acca9a7538ab83b96fb5f9b
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
minversion = 1.6
 | 
						|
skipsdist = True
 | 
						|
envlist = py34,py27,func,pep8
 | 
						|
 | 
						|
[testenv]
 | 
						|
usedevelop = True
 | 
						|
install_command = pip install --allow-external -U {opts} {packages}
 | 
						|
setenv =
 | 
						|
  VIRTUAL_ENV={envdir}
 | 
						|
  OS_TEST_PATH=./ironic_python_agent/tests/unit
 | 
						|
deps =
 | 
						|
  -r{toxinidir}/requirements.txt
 | 
						|
  -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
  python setup.py testr --slowest --testr-args='{posargs:}'
 | 
						|
 | 
						|
[testenv:func]
 | 
						|
usedevelop = True
 | 
						|
# Define virtualenv directory, port to use for functional testing, and number
 | 
						|
# of seconds to wait for the agent to come alive during functional testing.
 | 
						|
setenv =
 | 
						|
  VIRTUAL_ENV={envdir}
 | 
						|
  OS_TEST_PATH=./ironic_python_agent/tests/functional
 | 
						|
  TEST_PORT=9999
 | 
						|
  IPA_WAIT_TRIES=100
 | 
						|
commands =
 | 
						|
  python setup.py testr --slowest --testr-args='{posargs:}'
 | 
						|
 | 
						|
[testenv:pep8]
 | 
						|
commands =
 | 
						|
  flake8 {posargs:ironic_python_agent imagebuild}
 | 
						|
  doc8 doc/source README.rst
 | 
						|
 | 
						|
[testenv:cover]
 | 
						|
setenv = VIRTUAL_ENV={envdir}
 | 
						|
commands =
 | 
						|
  python setup.py testr --coverage {posargs:ironic_python_agent}
 | 
						|
 | 
						|
[testenv:venv]
 | 
						|
setenv = PYTHONHASHSEED=0
 | 
						|
commands = {posargs:}
 | 
						|
 | 
						|
[testenv:devenv]
 | 
						|
envdir = devenv
 | 
						|
usedevelop = True
 | 
						|
 | 
						|
[testenv:docs]
 | 
						|
setenv = PYTHONHASHSEED=0
 | 
						|
sitepackages = False
 | 
						|
envdir = {toxworkdir}/venv
 | 
						|
commands =
 | 
						|
  python setup.py build_sphinx
 | 
						|
 | 
						|
[flake8]
 | 
						|
ignore = E129
 | 
						|
exclude =  .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,*ironic/nova*,tools
 | 
						|
 | 
						|
[hacking]
 | 
						|
import_exceptions = ironic.openstack.common.gettextutils._,testtools.matchers
 |