mirror of
				https://github.com/onyx-and-iris/xair-api-python.git
				synced 2025-10-30 23:11:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			365 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			365 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import subprocess
 | |
| from pathlib import Path
 | |
| 
 | |
| 
 | |
| def ex_obs():
 | |
|     path = Path.cwd() / "examples" / "xair_obs" / "."
 | |
|     subprocess.run(["py", str(path)])
 | |
| 
 | |
| 
 | |
| def test_xair():
 | |
|     path = Path.cwd() / "tests" / "xair"
 | |
|     subprocess.run(["pytest", "-v", str(path)])
 | |
| 
 | |
| 
 | |
| def test_x32():
 | |
|     path = Path.cwd() / "tests" / "x32"
 | |
|     subprocess.run(["pytest", "-v", str(path)])
 |