mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This may or may not be temporary, but either way, the other code is there in source control, and the "why" of disabling gitlint is the helpful bit for a comment.
		
			
				
	
	
		
			24 lines
		
	
	
		
			650 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			650 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
source tools/travis/activate-venv
 | 
						|
 | 
						|
set -e
 | 
						|
set -x
 | 
						|
 | 
						|
./tools/lint --frontend --no-gitlint  # gitlint disabled because flaky
 | 
						|
 | 
						|
# Run the node tests first, since they're fast and deterministic
 | 
						|
./tools/test-js-with-node --coverage
 | 
						|
 | 
						|
# Check capitalization of strings
 | 
						|
./manage.py makemessages --locale en
 | 
						|
PYTHONWARNINGS=ignore ./tools/check-capitalization --no-generate
 | 
						|
PYTHONWARNINGS=ignore ./tools/check-frontend-i18n --no-generate
 | 
						|
 | 
						|
# Run the slower Casper tests last
 | 
						|
./tools/test-js-with-casper
 | 
						|
 | 
						|
# NB: Everything here should be in `tools/test-all`.  If there's a
 | 
						|
# reason not to run it there, it should be there as a comment
 | 
						|
# explaining why.
 |