mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 18:07:51 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			956 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			956 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from __future__ import annotations
 | 
						|
 | 
						|
import io
 | 
						|
 | 
						|
import pytest
 | 
						|
 | 
						|
 | 
						|
def pytest_report_header(config: pytest.Config) -> str:
 | 
						|
    try:
 | 
						|
        from PIL import features
 | 
						|
 | 
						|
        with io.StringIO() as out:
 | 
						|
            features.pilinfo(out=out, supported_formats=False)
 | 
						|
            return out.getvalue()
 | 
						|
    except Exception as e:
 | 
						|
        return f"pytest_report_header failed: {e}"
 | 
						|
 | 
						|
 | 
						|
def pytest_configure(config: pytest.Config) -> None:
 | 
						|
    config.addinivalue_line(
 | 
						|
        "markers",
 | 
						|
        "pil_noop_mark: A conditional mark where nothing special happens",
 | 
						|
    )
 | 
						|
 | 
						|
    # We're marking some tests to ignore valgrind errors and XFAIL them.
 | 
						|
    # Ensure that the mark is defined
 | 
						|
    # even in cases where pytest-valgrind isn't installed
 | 
						|
    try:
 | 
						|
        config.addinivalue_line(
 | 
						|
            "markers",
 | 
						|
            "valgrind_known_error: Tests that have known issues with valgrind",
 | 
						|
        )
 | 
						|
    except Exception:
 | 
						|
        # valgrind is already installed
 | 
						|
        pass
 |