16 lines
		
	
	
		
			508 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			508 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import pytest
 | 
						|
 | 
						|
pytestmark = [
 | 
						|
    # pytables https://github.com/PyTables/PyTables/issues/822
 | 
						|
    pytest.mark.filterwarnings(
 | 
						|
        "ignore:a closed node found in the registry:UserWarning"
 | 
						|
    ),
 | 
						|
    pytest.mark.filterwarnings(r"ignore:tostring\(\) is deprecated:DeprecationWarning"),
 | 
						|
    pytest.mark.filterwarnings(
 | 
						|
        r"ignore:`np\.object` is a deprecated alias:DeprecationWarning"
 | 
						|
    ),
 | 
						|
    pytest.mark.filterwarnings(
 | 
						|
        r"ignore:`np\.bool` is a deprecated alias:DeprecationWarning"
 | 
						|
    ),
 | 
						|
]
 |