mirror of
				https://github.com/django/daphne.git
				synced 2025-11-04 01:27:33 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			403 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			403 B
		
	
	
	
		
			Python
		
	
	
	
	
	
#!/usr/bin/env python
 | 
						|
import os
 | 
						|
import sys
 | 
						|
 | 
						|
import django
 | 
						|
from django.conf import settings
 | 
						|
from django.test.utils import get_runner
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    os.environ['DJANGO_SETTINGS_MODULE'] = "channels.tests.settings"
 | 
						|
    django.setup()
 | 
						|
    TestRunner = get_runner(settings)
 | 
						|
    test_runner = TestRunner()
 | 
						|
    failures = test_runner.run_tests(["channels.tests"])
 | 
						|
    sys.exit(bool(failures))
 |