mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-04 07:05:41 +00:00 
			
		
		
		
	ignore outside sample code in coverage
This commit is contained in:
		@@ -8,11 +8,11 @@ from plugin.mixins import ScheduleMixin, SettingsMixin
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
# Define some simple tasks to perform
 | 
					# Define some simple tasks to perform
 | 
				
			||||||
def print_hello():
 | 
					def print_hello():
 | 
				
			||||||
    print("Hello")
 | 
					    print("Hello")  # pragma: no cover
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def print_world():
 | 
					def print_world():
 | 
				
			||||||
    print("World")
 | 
					    print("World")  # pragma: no cover
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class ScheduledTaskPlugin(ScheduleMixin, SettingsMixin, IntegrationPluginBase):
 | 
					class ScheduledTaskPlugin(ScheduleMixin, SettingsMixin, IntegrationPluginBase):
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user