The automagic pypi publishing of releases through jenkins.openstack.org depends on tox having a testenv called venv. Add this new testenv so that git-review can be released automagically. Change-Id: I89d78a22c13f94b5af3cda1115c8068424d42b34
		
			
				
	
	
		
			24 lines
		
	
	
		
			400 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			400 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
envlist = py26,py27,pep8
 | 
						|
 | 
						|
[testenv]
 | 
						|
setenv = VIRTUAL_ENV={envdir}
 | 
						|
 | 
						|
[testenv:pep8]
 | 
						|
deps = flake8
 | 
						|
       argparse
 | 
						|
       hacking
 | 
						|
commands = flake8
 | 
						|
 | 
						|
[testenv:sdist]
 | 
						|
commands = python setup.py sdist {posargs}
 | 
						|
 | 
						|
[testenv:venv]
 | 
						|
commands = {posargs}
 | 
						|
 | 
						|
[flake8]
 | 
						|
ignore = E125
 | 
						|
show-source = True
 | 
						|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
 | 
						|
filename = git-review,setup.py
 |