forked from mirrors/gecko-dev
		
	Automatic update from web-platform-tests Add a wpt build-docs command This makes it obvious how to do that and avoids worrying about virtualenvs and installing sphinx -- wpt-commits: a43cfa2dd30697c5c75e3581547551773af146d9 wpt-pr: 23922
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			146 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			146 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import subprocess
 | 
						|
import os
 | 
						|
 | 
						|
here = os.path.dirname(__file__)
 | 
						|
 | 
						|
 | 
						|
def build(*args, **kwargs):
 | 
						|
    subprocess.check_call(["make", "html"], cwd=here)
 |