mirror of
				https://github.com/python-escpos/python-escpos
				synced 2025-10-23 09:30:00 +00:00 
			
		
		
		
	 4c2dcdfac6
			
		
	
	4c2dcdfac6
	
	
	
		
			
			* migrate * abstract base class test * remove assert_equal in test_cli * remove nose from test_cli * remove nose dependencies * use tempfile * configure coverage * flag python version in name * enable comment * drop EOL py37
		
			
				
	
	
		
			45 lines
		
	
	
		
			513 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			513 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # python temporary files
 | |
| *.pyc
 | |
| 
 | |
| # editor autosaves, data and file browser files
 | |
| $~
 | |
| .idea/
 | |
| .directory
 | |
| .cache/
 | |
| settings.json
 | |
| 
 | |
| # temporary data
 | |
| temp
 | |
| 
 | |
| # packaging and testing
 | |
| .tox/
 | |
| *.egg-info/
 | |
| .eggs/
 | |
| *.egg
 | |
| build/
 | |
| dist/
 | |
| .coverage
 | |
| src/escpos/version.py
 | |
| .hypothesis
 | |
| .pytest_cache/
 | |
| coverage.xml
 | |
| 
 | |
| # pyenv
 | |
| .python-version
 | |
| 
 | |
| # testing temporary directories
 | |
| test/test-cli-output/
 | |
| 
 | |
| # vim swap files
 | |
| *.swp
 | |
| *.swn
 | |
| *.swo
 | |
| 
 | |
| # vscode
 | |
| .vscode/*
 | |
| !.vscode/settings.json
 | |
| !.vscode/tasks.json
 | |
| !.vscode/launch.json
 | |
| !.vscode/extensions.json
 | |
| 
 |