mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			594 B
		
	
	
	
		
			INI
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			594 B
		
	
	
	
		
			INI
		
	
	
	
	
	
[tox]
 | 
						|
requires =
 | 
						|
    tox>=4.2
 | 
						|
env_list =
 | 
						|
    lint
 | 
						|
    py{py3, 313, 312, 311, 310, 39}
 | 
						|
 | 
						|
[testenv]
 | 
						|
deps =
 | 
						|
    numpy
 | 
						|
extras =
 | 
						|
    tests
 | 
						|
commands =
 | 
						|
    {envpython} selftest.py
 | 
						|
    {envpython} -m pytest -W always {posargs}
 | 
						|
 | 
						|
[testenv:lint]
 | 
						|
skip_install = true
 | 
						|
deps =
 | 
						|
    check-manifest
 | 
						|
    pre-commit
 | 
						|
pass_env =
 | 
						|
    PRE_COMMIT_COLOR
 | 
						|
commands =
 | 
						|
    pre-commit run --all-files --show-diff-on-failure
 | 
						|
    check-manifest
 | 
						|
 | 
						|
[testenv:mypy]
 | 
						|
skip_install = true
 | 
						|
deps =
 | 
						|
    -r .ci/requirements-mypy.txt
 | 
						|
extras =
 | 
						|
    typing
 | 
						|
commands =
 | 
						|
    mypy conftest.py selftest.py setup.py docs src winbuild Tests {posargs}
 |