mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	This should automatically catch mistakes where someone updates the database models but forgets to generate migrations afterwards.
		
			
				
	
	
		
			27 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			525 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
set -e
 | 
						|
 | 
						|
cd "$(dirname "$0")"/..
 | 
						|
 | 
						|
function run {
 | 
						|
    echo '----'
 | 
						|
    echo "Running $@"
 | 
						|
    if ! "$@"; then
 | 
						|
        printf "\n\e[31;1mFAILED\e[0m $@\n"
 | 
						|
        exit 1
 | 
						|
    else
 | 
						|
        echo
 | 
						|
    fi
 | 
						|
}
 | 
						|
 | 
						|
run ./tools/clean-repo
 | 
						|
run ./tools/lint-all
 | 
						|
run ./tools/test-migrations
 | 
						|
run ./tools/test-js-with-node
 | 
						|
run ./tools/test-backend
 | 
						|
run ./tools/test-js-with-casper
 | 
						|
# Not running management test since it takes 40s and thus is too slow to be worth it.
 | 
						|
# run ./tools/test-management
 | 
						|
 | 
						|
printf '\n\e[32mAll OK!\e[0m\n'
 |