mirror of
				https://github.com/f-droid/fdroidserver.git
				synced 2025-11-04 06:30:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
	
		
			654 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e # quit script on error
 | 
						|
 | 
						|
echo_header() {
 | 
						|
    { echo -e "==============================================================================\n$1"; } 2>/dev/null
 | 
						|
}
 | 
						|
 | 
						|
#------------------------------------------------------------------------------#
 | 
						|
 | 
						|
if [ ! -d tests ]; then
 | 
						|
    cd ..
 | 
						|
fi
 | 
						|
 | 
						|
set -x # show each command as it is executed
 | 
						|
 | 
						|
#------------------------------------------------------------------------------#
 | 
						|
echo_header "run commit hooks"
 | 
						|
 | 
						|
test -x ./hooks/pre-commit && ./hooks/pre-commit
 | 
						|
 | 
						|
#------------------------------------------------------------------------------#
 | 
						|
echo_header "run unit tests"
 | 
						|
 | 
						|
python3 -m unittest -v
 | 
						|
 | 
						|
echo SUCCESS
 |