As part of the migration of this project to the independent release model, we failed to notice that the job template was still tied to a specific release. We've now introduced a new unversioned job template, 'openstack-python3-jobs' [1], which was can and should use. Do this. [1] https://review.opendev.org/c/openstack/openstack-zuul-jobs/+/833286/ Change-Id: I7d39046a59f08d60fcff1f4b28287c6979a803ed
		
			
				
	
	
		
			45 lines
		
	
	
		
			965 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			965 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
envlist = py3,pep8,docs
 | 
						|
minversion = 2.0
 | 
						|
skipsdist = True
 | 
						|
 | 
						|
[testenv]
 | 
						|
usedevelop = True
 | 
						|
install_command = pip install -U {opts} {packages}
 | 
						|
setenv =
 | 
						|
    VIRTUAL_ENV={envdir}
 | 
						|
deps =
 | 
						|
    -r{toxinidir}/test-requirements.txt
 | 
						|
    -r{toxinidir}/requirements.txt
 | 
						|
commands = stestr run --slowest {posargs}
 | 
						|
 | 
						|
[testenv:pep8]
 | 
						|
commands = flake8
 | 
						|
 | 
						|
[testenv:venv]
 | 
						|
commands = {posargs}
 | 
						|
 | 
						|
[testenv:cover]
 | 
						|
setenv =
 | 
						|
    PYTHON=coverage run --source $project --parallel-mode
 | 
						|
commands =
 | 
						|
    stestr run {posargs}
 | 
						|
    coverage combine
 | 
						|
    coverage html -d cover
 | 
						|
    coverage xml -o cover/coverage.xml
 | 
						|
 | 
						|
[testenv:genconfig]
 | 
						|
commands =
 | 
						|
    oslo-config-generator --config-file=config-generator.conf
 | 
						|
    python tools/cli_auto_doc.py doc/source/tools
 | 
						|
 | 
						|
[testenv:docs]
 | 
						|
commands = python setup.py build_sphinx
 | 
						|
 | 
						|
[flake8]
 | 
						|
# E123, E125 skipped as they are invalid PEP-8
 | 
						|
ignore = W605, W503, W504, E731
 | 
						|
show-source = true
 | 
						|
builtins = _
 | 
						|
exclude=.venv*,.git,.tox,dist,doc,*lib/python*,*egg,tools,build
 |