Replaced run_tests.sh with commands that run with tox. I would use tox itself here, but it wouldn't install the correct branch of neutron.
		
			
				
	
	
		
			9 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			305 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# TODO: make tox install the correct version of neutron so we can run tox
 | 
						|
#       instead of these commands manually
 | 
						|
nosetests --exclude=mysql
 | 
						|
nosetests --where=quark/tests/functional/mysql
 | 
						|
nosetests --exclude=mysql --cover-package=quark --cover-erase
 | 
						|
flake8 --show-source --builtins=_ quark
 |