mirror of
				https://github.com/inventree/inventree-docs.git
				synced 2025-11-04 06:25:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			250 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import yaml
 | 
						|
 | 
						|
here = os.path.dirname(__file__)
 | 
						|
 | 
						|
tld = os.path.abspath(os.path.join(here, '..'))
 | 
						|
 | 
						|
config_file = os.path.join(tld, 'mkdocs.yml')
 | 
						|
 | 
						|
with open(config_file, 'r') as f:
 | 
						|
    data = yaml.safe_load(f)
 | 
						|
 | 
						|
    assert data['strict'] == True |