Remove not needed tests

This commit is contained in:
Sergi Almacellas Abellana 2016-06-02 13:11:31 +02:00
parent 45002aa41b
commit a88237eb7b
2 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,5 @@
include INSTALL
include README
include TODO
include COPYRIGHT
include CHANGELOG
include LICENSE

View File

@ -3,7 +3,6 @@
# copyright notices and license terms.
from decimal import Decimal
from dateutil.relativedelta import relativedelta
import doctest
import unittest
from trytond.pool import Pool
import trytond.tests.test_tryton
@ -124,10 +123,6 @@ class AccountInvoiceConsecutiveTestCase(ModuleTestCase):
def suite():
suite = trytond.tests.test_tryton.suite()
from trytond.modules.account.tests import test_account
for test in test_account.suite():
if test not in suite and not isinstance(test, doctest.DocTestCase):
suite.addTest(test)
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountInvoiceConsecutiveTestCase))
return suite