Taken from https://github.com/dshakhray/python-glareclient Change-Id: If0e7e5cd0e39281f725df21308a18ed6caa8a009
		
			
				
	
	
		
			11 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			195 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
command -v tox > /dev/null 2>&1
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
  echo 'This script requires "tox" to run.'
 | 
						|
  echo 'You can install it with "pip install tox".'
 | 
						|
  exit 1; 
 | 
						|
fi
 | 
						|
 | 
						|
tox -evenv -- $@
 |