forked from indymedia/epicyon
				
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			375 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			375 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/bin/bash
 | |
| 
 | |
| if [ -f /usr/bin/flake8 ]; then
 | |
|     cmd="/usr/bin/flake8"
 | |
| else
 | |
|     cmd="python3 -m flake8"
 | |
| fi
 | |
| 
 | |
| echo "Starting static analysis"
 | |
| 
 | |
| for sourceFile in *.py
 | |
| do
 | |
|     if [[ "$sourceFile" == 'tests.py' ]]; then
 | |
|         continue
 | |
|     fi
 | |
|     result=$($cmd "$sourceFile")
 | |
|     if [ "$result" ]; then
 | |
| 	echo "$result"
 | |
| 	exit 1
 | |
|     fi
 | |
| done
 | |
| 
 | |
| echo "Static analysis complete"
 | |
| 
 | |
| exit 0
 |