Tryton 6.8: test, info
This commit is contained in:
parent
1163a8125d
commit
40d3a9e825
6 changed files with 8 additions and 23 deletions
|
@ -9,11 +9,11 @@ pip install mds-cashbook-dataexchange
|
||||||
|
|
||||||
Requires
|
Requires
|
||||||
========
|
========
|
||||||
- Tryton 6.0
|
- Tryton 6.8
|
||||||
|
|
||||||
Changes
|
Changes
|
||||||
=======
|
=======
|
||||||
|
|
||||||
*6.0.0 - 28.08.2022*
|
*6.8.2 - 06.06.2023*
|
||||||
|
|
||||||
- init
|
- init
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -40,7 +40,7 @@ with open(path.join(here, 'versiondep.txt'), encoding='utf-8') as f:
|
||||||
|
|
||||||
# tryton-version
|
# tryton-version
|
||||||
major_version = 6
|
major_version = 6
|
||||||
minor_version = 0
|
minor_version = 8
|
||||||
|
|
||||||
requires = ['python-slugify']
|
requires = ['python-slugify']
|
||||||
for dep in info.get('depends', []):
|
for dep in info.get('depends', []):
|
||||||
|
@ -89,6 +89,7 @@ setup(name='%s_%s' % (PREFIX, MODULE),
|
||||||
'License :: OSI Approved :: GNU General Public License (GPL)',
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
],
|
],
|
||||||
|
|
||||||
keywords='tryton cashbook import export',
|
keywords='tryton cashbook import export',
|
||||||
|
|
|
@ -2,17 +2,3 @@
|
||||||
# This file is part of the cashbook-module from m-ds for Tryton.
|
# This file is part of the cashbook-module from m-ds for Tryton.
|
||||||
# The COPYRIGHT file at the top level of this repository contains the
|
# The COPYRIGHT file at the top level of this repository contains the
|
||||||
# full copyright notices and license terms.
|
# full copyright notices and license terms.
|
||||||
|
|
||||||
import trytond.tests.test_tryton
|
|
||||||
import unittest
|
|
||||||
|
|
||||||
from .test_module import CashbookExchangeTestCase
|
|
||||||
|
|
||||||
__all__ = ['suite']
|
|
||||||
|
|
||||||
|
|
||||||
def suite():
|
|
||||||
suite = trytond.tests.test_tryton.suite()
|
|
||||||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(
|
|
||||||
CashbookExchangeTestCase))
|
|
||||||
return suite
|
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
# full copyright notices and license terms.
|
# full copyright notices and license terms.
|
||||||
|
|
||||||
|
|
||||||
from trytond.tests.test_tryton import ModuleTestCase
|
|
||||||
from trytond.modules.cashbook.tests.test_module import CashbookTestCase
|
from trytond.modules.cashbook.tests.test_module import CashbookTestCase
|
||||||
from .category import CategoryTestCase
|
from .category import CategoryTestCase
|
||||||
from .party import PartyTestCase
|
from .party import PartyTestCase
|
||||||
|
@ -15,12 +14,11 @@ class CashbookExchangeTestCase(
|
||||||
CashbookTestCase,
|
CashbookTestCase,
|
||||||
CategoryTestCase,
|
CategoryTestCase,
|
||||||
PartyTestCase,
|
PartyTestCase,
|
||||||
TransactionTestCase,
|
TransactionTestCase):
|
||||||
ModuleTestCase):
|
|
||||||
'Test cashbook exchange module'
|
'Test cashbook exchange module'
|
||||||
module = 'cashbook_dataexchange'
|
module = 'cashbook_dataexchange'
|
||||||
|
|
||||||
# end CashbookExchangeTestCase
|
# end CashbookExchangeTestCase
|
||||||
|
|
||||||
|
|
||||||
del ModuleTestCase
|
del CashbookTestCase
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
[tryton]
|
[tryton]
|
||||||
version=6.0.1
|
version=6.8.2
|
||||||
depends:
|
depends:
|
||||||
cashbook
|
cashbook
|
||||||
xml:
|
xml:
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
cashbook;6.0.1;6.0.999;mds
|
cashbook;6.8.28;6.8.999;mds
|
||||||
|
|
Loading…
Reference in a new issue