mirror of
				https://github.com/fastapi/sqlmodel.git
				synced 2025-11-04 14:47:08 +08:00 
			
		
		
		
	Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			447 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			447 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import subprocess
 | 
						|
import sys
 | 
						|
from pathlib import Path
 | 
						|
 | 
						|
from .conftest import needs_py39
 | 
						|
 | 
						|
root_path = Path(__file__).parent.parent
 | 
						|
 | 
						|
 | 
						|
@needs_py39
 | 
						|
def test_select_gen() -> None:
 | 
						|
    env = os.environ.copy()
 | 
						|
    env["CHECK_JINJA"] = "1"
 | 
						|
    result = subprocess.run(
 | 
						|
        [sys.executable, "scripts/generate_select.py"],
 | 
						|
        env=env,
 | 
						|
        check=True,
 | 
						|
        cwd=root_path,
 | 
						|
        capture_output=True,
 | 
						|
    )
 | 
						|
    print(result.stdout)
 |