forked from loafle/openapi-generator-original
		
	* fix: non-zero exit code if tests fail * tests: use local petserver to run tests * fix: non-zero exit code if tests fail * tests: use local petserver to run tests * fix: creating ssl context in old version of Python * chore: remove unused target from Makefile * doc: changes from upstream * fix: tornado client raises NotImplementedError in older version of Python
		
			
				
	
	
		
			19 lines
		
	
	
		
			355 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			355 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 #!/bin/bash
 | 
						|
 | 
						|
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-all: clean
 | 
						|
		bash ./test_python2_and_3.sh
 |