remove test file

This commit is contained in:
Àngel Àlvarez 2023-03-17 16:20:26 +01:00
parent e7df55da52
commit fff6af39ea
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
# This file is part agronomics module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
import unittest
import doctest
from trytond.tests.test_tryton import ModuleTestCase
from trytond.tests.test_tryton import suite as test_suite
from trytond.tests.test_tryton import doctest_teardown
from trytond.tests.test_tryton import doctest_checker
from trytond.modules.company.tests import CompanyTestMixin
class AgronomicsTestCase(CompanyTestMixin, ModuleTestCase):
'Test Agronomics module'
module = 'agronomics'
def suite():
suite = test_suite()
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
AgronomicsTestCase))
suite.addTests(doctest.DocFileSuite('scenario_production_template.rst',
tearDown=doctest_teardown, encoding='utf-8',
checker=doctest_checker,
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
return suite