mirror of
https://github.com/NaN-tic/trytond-sale_opportunity_purchase_relation_margin.git
synced 2023-12-14 04:02:56 +01:00
Migrate to version 3.4
This commit is contained in:
parent
15af6e0d3c
commit
7c41bc26c7
3 changed files with 5 additions and 3 deletions
|
@ -1 +1,2 @@
|
|||
Version 3.4.0 - 2014-11-03
|
||||
* Initial release
|
||||
|
|
|
@ -3,7 +3,8 @@
|
|||
import unittest
|
||||
import doctest
|
||||
import trytond.tests.test_tryton
|
||||
from trytond.tests.test_tryton import test_depends, doctest_dropdb
|
||||
from trytond.tests.test_tryton import test_depends
|
||||
from trytond.tests.test_tryton import doctest_setup, doctest_teardown
|
||||
|
||||
|
||||
class TestCase(unittest.TestCase):
|
||||
|
@ -23,6 +24,6 @@ def suite():
|
|||
suite.addTests(unittest.TestLoader().loadTestsFromTestCase(TestCase))
|
||||
suite.addTests(doctest.DocFileSuite(
|
||||
'scenario_sale_opportunity_purchase_relation_margin.rst',
|
||||
setUp=doctest_dropdb, tearDown=doctest_dropdb, encoding='utf-8',
|
||||
setUp=doctest_setup, tearDown=doctest_teardown, encoding='utf-8',
|
||||
optionflags=doctest.REPORT_ONLY_FIRST_FAILURE))
|
||||
return suite
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
[tryton]
|
||||
version=3.2.0
|
||||
version=3.4.0
|
||||
depends:
|
||||
sale_margin
|
||||
sale_opportunity_purchase_relation
|
||||
|
|
Loading…
Reference in a new issue