mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-10-31 16:06:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| 
 | |
| export RUST_BACKTRACE=1
 | |
| 
 | |
| while true
 | |
| do
 | |
|     cargo test qc_ --release -- --nocapture
 | |
|     if [[ x$? != x0 ]] ; then
 | |
|         exit $?
 | |
|     fi
 | |
| done
 |