Switch to using bundletester for execution of functional tests, leveraging tox to build out test virtualenvs. Rename amulet tests inline with gate-* and dfs-* naming standards. Update README to refer to functional testing section of the charm guide. Change-Id: I218411054a00ef80ef56da72ef20785e31f1b69c
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
envlist = pep8,py27
 | 
						|
skipsdist = True
 | 
						|
 | 
						|
[testenv]
 | 
						|
setenv = VIRTUAL_ENV={envdir}
 | 
						|
         PYTHONHASHSEED=0
 | 
						|
install_command =
 | 
						|
  pip install --allow-unverified python-apt {opts} {packages}
 | 
						|
commands = ostestr {posargs}
 | 
						|
 | 
						|
[testenv:py27]
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
 | 
						|
[testenv:pep8]
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands = flake8 {posargs} hooks unit_tests tests actions lib
 | 
						|
           charm-proof
 | 
						|
 | 
						|
[testenv:venv]
 | 
						|
commands = {posargs}
 | 
						|
 | 
						|
[testenv:func27-noop]
 | 
						|
# DRY RUN - For Debug
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
    bundletester -vl DEBUG -r json -o func-results.json --test-pattern "gate-*" -n --no-destroy
 | 
						|
 | 
						|
[testenv:func27]
 | 
						|
# Charm Functional Test
 | 
						|
# Run all gate tests which are +x (expected to always pass)
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
    bundletester -vl DEBUG -r json -o func-results.json --test-pattern "gate-*" --no-destroy
 | 
						|
 | 
						|
[testenv:func27-smoke]
 | 
						|
# Charm Functional Test
 | 
						|
# Run a specific test as an Amulet smoke test (expected to always pass)
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
    bundletester -vl DEBUG -r json -o func-results.json gate-basic-xenial-mitaka --no-destroy
 | 
						|
 | 
						|
[testenv:func27-dfs]
 | 
						|
# Charm Functional Test
 | 
						|
# Run all deploy-from-source tests which are +x (may not always pass!)
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
    bundletester -vl DEBUG -r json -o func-results.json --test-pattern "dfs-*" --no-destroy
 | 
						|
 | 
						|
[testenv:func27-dev]
 | 
						|
# Charm Functional Test
 | 
						|
# Run all development test targets which are +x (may not always pass!)
 | 
						|
basepython = python2.7
 | 
						|
deps = -r{toxinidir}/requirements.txt
 | 
						|
       -r{toxinidir}/test-requirements.txt
 | 
						|
commands =
 | 
						|
    bundletester -vl DEBUG -r json -o func-results.json --test-pattern "dev-*" --no-destroy
 | 
						|
 | 
						|
[flake8]
 | 
						|
ignore = E402,E226
 | 
						|
exclude = hooks/charmhelpers
 |