mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	This commit renames --force argument used with various tests to --skip-provision-check. As a consequence of this name change all other files that set --force option for the test commands have been updated. This change is done in order to provide more clarity for using this option for runnning tests. This commit addresses issue #17455.
		
			
				
	
	
		
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| import argparse
 | |
| import os
 | |
| import sys
 | |
| 
 | |
| tools_dir = os.path.dirname(os.path.abspath(__file__))
 | |
| root_dir = os.path.dirname(tools_dir)
 | |
| sys.path.insert(0, root_dir)
 | |
| 
 | |
| from tools.lib.test_script import add_provision_check_override_param, assert_provisioning_status_ok
 | |
| 
 | |
| 
 | |
| def run() -> None:
 | |
|     parser = argparse.ArgumentParser()
 | |
|     add_provision_check_override_param(parser)
 | |
| 
 | |
|     options = parser.parse_args()
 | |
| 
 | |
|     assert_provisioning_status_ok(options.skip_provision_check)
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     run()
 |