-
Notifications
You must be signed in to change notification settings - Fork 1
/
__init__.py
17 lines (14 loc) · 845 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*- coding: utf-8 -*-
""" This module is used to import all the classes and functions from the package """
# Engines
from .testrail_api_reporter.engines.at_coverage_reporter import ATCoverageReporter
from .testrail_api_reporter.engines.results_reporter import TestRailResultsReporter
from .testrail_api_reporter.engines.plotly_reporter import PlotlyReporter
from .testrail_api_reporter.engines.case_backup import TCBackup
# Publishers
from .testrail_api_reporter.publishers.confluence_sender import ConfluenceSender
from .testrail_api_reporter.publishers.email_sender import EmailSender
from .testrail_api_reporter.publishers.slack_sender import SlackSender
from .testrail_api_reporter.publishers.gdrive_uploader import GoogleDriveUploader
# Utils
from .testrail_api_reporter.utils.reporter_utils import upload_image, zip_file, delete_file