11 lines
		
	
	
		
			152 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			152 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SHELL := /bin/bash
 | 
						|
 | 
						|
init:
 | 
						|
	@python setup.py develop
 | 
						|
	@pip install -r requirements.txt
 | 
						|
 | 
						|
test:
 | 
						|
	rm -f .coverage
 | 
						|
	@nosetests -sv --with-coverage ./tests/
 | 
						|
 |