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 INSTALL
include README include README
include TODO
include COPYRIGHT include COPYRIGHT
include CHANGELOG include CHANGELOG
include LICENSE include LICENSE

View File

@ -3,7 +3,6 @@
# copyright notices and license terms. # copyright notices and license terms.
from decimal import Decimal from decimal import Decimal
from dateutil.relativedelta import relativedelta from dateutil.relativedelta import relativedelta
import doctest
import unittest import unittest
from trytond.pool import Pool from trytond.pool import Pool
import trytond.tests.test_tryton import trytond.tests.test_tryton
@ -124,10 +123,6 @@ class AccountInvoiceConsecutiveTestCase(ModuleTestCase):
def suite(): def suite():
suite = trytond.tests.test_tryton.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( suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AccountInvoiceConsecutiveTestCase)) AccountInvoiceConsecutiveTestCase))
return suite return suite