2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-07 15:58:49 +00:00

ignore outside sample code in coverage

This commit is contained in:
Matthias 2022-05-03 22:06:10 +02:00
parent 07a86a3883
commit 58a5eac66a
No known key found for this signature in database
GPG Key ID: AB6D0E6C4CB65093

View File

@ -8,11 +8,11 @@ from plugin.mixins import ScheduleMixin, SettingsMixin
# Define some simple tasks to perform
def print_hello():
print("Hello")
print("Hello") # pragma: no cover
def print_world():
print("World")
print("World") # pragma: no cover
class ScheduledTaskPlugin(ScheduleMixin, SettingsMixin, IntegrationPluginBase):