forked from loafle/openapi-generator-original
		
	* python->python-legacy, python-experimental->python * test with openjdk8 * test with openjdk11 * comment out rm * move kotlin tests to circleci * move kotlin tests * move tests to circleci * fix circleci * rearrange test * move tests * use wrapper Co-authored-by: Justin Black <justin.a.black@gmail.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			330 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			330 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
REQUIREMENTS_FILE=dev-requirements.txt
 | 
						|
REQUIREMENTS_OUT=dev-requirements.txt.log
 | 
						|
SETUP_OUT=*.egg-info
 | 
						|
VENV=.venv
 | 
						|
 | 
						|
clean:
 | 
						|
		rm -rf $(REQUIREMENTS_OUT)
 | 
						|
		rm -rf $(SETUP_OUT)
 | 
						|
		rm -rf $(VENV)
 | 
						|
		rm -rf .tox
 | 
						|
		rm -rf .coverage
 | 
						|
		find . -name "*.py[oc]" -delete
 | 
						|
		find . -name "__pycache__" -delete
 | 
						|
 | 
						|
test: clean
 | 
						|
		bash ./test_python.sh
 |