From d50456ff57354208eeb8197880fd4252496ea723 Mon Sep 17 00:00:00 2001 From: Frederik Jaeckel Date: Fri, 22 Dec 2023 15:01:16 +0100 Subject: [PATCH] remove code from tests --- tests/__init__.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/__init__.py b/tests/__init__.py index bd1a230..00701b3 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -2,17 +2,3 @@ # This file is part of the edocument-module for Tryton from m-ds.de. # The COPYRIGHT file at the top level of this repository contains the # full copyright notices and license terms. - -import trytond.tests.test_tryton -import unittest - -from .test_edocument import EdocTestCase - -__all__ = ['suite'] - - -def suite(): - suite = trytond.tests.test_tryton.suite() - suite.addTests(unittest.TestLoader().loadTestsFromTestCase( - EdocTestCase)) - return suite