mirror of
				https://github.com/ansible-collections/community.general.git
				synced 2024-09-14 20:13:21 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			INI
		
	
	
	
	
	
| [tox]
 | |
| envlist = py26,py27,py35
 | |
| 
 | |
| [testenv:py35]
 | |
| deps = -r{toxinidir}/test/utils/tox/requirements-py3.txt
 | |
| 
 | |
| [testenv]
 | |
| deps = -r{toxinidir}/test/utils/tox/requirements.txt
 | |
| whitelist_externals = make
 | |
| commands =
 | |
|     python --version
 | |
|     py26: python -m compileall -fq -x 'test/samples|contrib/inventory/vagrant.py' lib test contrib
 | |
|     py27: python -m compileall -fq -x 'test/samples' lib test contrib
 | |
|     py35: python -m compileall -fq -x 'test/samples|lib/ansible/modules' lib test contrib
 | |
|     make tests
 | |
| 
 | |
| 
 | |
| [flake8]
 | |
| # These are things that the devs don't agree make the code more readable
 | |
| # E128 continuation line under-indented for visual indent
 | |
| # E201 whitespace after '['
 | |
| # E202 whitespace before ']'
 | |
| # E203 whitespace before ','
 | |
| # E221 multiple spaces before operator
 | |
| # E225 missing whitespace around operator
 | |
| # E226 missing whitespace around arithmetic operator
 | |
| # E231 missing whitespace after ','
 | |
| # E241 multiple spaces after ','
 | |
| # E251 unexpected spaces around keyword / parameter equals
 | |
| ignore = E128,E201,E202,E203,E221,E225,E226,E231,E241,E251
 | |
| # not all the devs believe in 80 column line length
 | |
| max-line-length = 160
 | |
| # Not going to worry about style in the test suite
 | |
| exclude = tests/*
 |