Ask pip to upgrade packages in the virtualenv so that a long-lived virtualenv is still kept up to date as external dependencies change. Change-Id: I5a57debd5c4bc03e6d00d3801be614d9b895c508
		
			
				
	
	
		
			35 lines
		
	
	
		
			844 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			844 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
envlist = py26,py27,pep8
 | 
						|
minversion = 1.6
 | 
						|
skipsdist = True
 | 
						|
 | 
						|
[testenv]
 | 
						|
usedevelop = True
 | 
						|
install_command = pip install -U {opts} {packages}
 | 
						|
setenv = LANG=en_US.UTF-8
 | 
						|
         LANGUAGE=en_US:en
 | 
						|
         LC_ALL=C
 | 
						|
deps= -r{toxinidir}/test-requirements.txt
 | 
						|
commands=
 | 
						|
    python setup.py testr --slowest --testr-args='{posargs}'
 | 
						|
 | 
						|
[testenv:pep8]
 | 
						|
commands =
 | 
						|
  flake8 {posargs}
 | 
						|
 | 
						|
[testenv:venv]
 | 
						|
commands = {posargs}
 | 
						|
 | 
						|
[testenv:cover]
 | 
						|
setenv = PYTHON=coverage run --source diskimage_builder
 | 
						|
commands = bash -c 'if [ ! -d ./.testrepository ] ; then testr init ; fi'
 | 
						|
           bash -c 'testr run --parallel ; RET=$? ; coverage combine ; coverage html -d ./cover $OMIT && exit $RET'
 | 
						|
 | 
						|
[tox:jenkins]
 | 
						|
downloadcache = ~/cache/pip
 | 
						|
 | 
						|
[flake8]
 | 
						|
ignore = E125,H202,H803
 | 
						|
builtins = _
 | 
						|
exclude =  .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
 |