Contributors mailing list archives
contributors@odoo-community.org
Browse archives
odoo 10 does not find any tests
by
redCOR AG, Robert Rottermann
Hi there, I try to add test to a module and do call them like this: bin/start_openerp --test-enable -u redhelpdesk --stop-after-init the file with the tests is loaded, but none of the tests are run. can anybody give me a hint, what I am doing wrong? thanks Robert this is the setting: redhelpdesk ... tests __init__.py from . import test_redhelpdesk test_redhelpdesk.py with the following content: # -*- encoding: utf-8 -*- from odoo.tests.common import TransactionCase class TestRedhelpdesk(TransactionCase): def setUp(self, *args, **kwargs): super(TestRedhelpdesk, self).setUp(*args, **kwargs) print 'holla*' * 10 def test_print_rs(self): "print a string of rs" print 'r' * 66 self.assertFalse(1, '1 is not false')
Follow-Ups
-
Re: SOLVED (but why ??) Re: odoo 10 does not find any tests
bySunflower IT, Tom Blauwendraat -
SOLVED (but why ??) Re: odoo 10 does not find any tests
byredCOR AG, Robert Rottermann -
Re: odoo 10 does not find any tests
byWeb-veistämö Oy/Avoin.Systems, Miku Laitinen.