9 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			186 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| set -exuo pipefail
 | |
| . make/lib.sh
 | |
| 
 | |
| ensure_web_installed
 | |
| 
 | |
| trap - ERR # Testy nejspíš selžou, ale nechceme kolem toho dělat další chybovou hlášku.
 | |
| ./manage.py test -v2
 | 
