Console script to run nose with the good import
Project description
This is an alternative test runner that prevents confusing situations due to the special openerp.addons namespace for Odoo addons.
At the time being, it is meant to be used in conjunction with the buildout recipe only.
Use case
Odoo overrides the python importer for the Odoo addons (also called modules but we’ll avoid this terminology here for confusion with Python modules), to place them into the openerp.addons namespace.
For instance, some foo Odoo addon will be set in the sys.modules as openerp.addons.foo instead of just foo.
The issue is that nose imports the test modules directly, with the effect that they aren’t in the openerp.addons namespace. This leads to overall duplication of the Odoo addon as a Python module, which can in some cases confuse the code. For instance, some isinstance() calls might fail, depending on the execution path.
Notably, this runner is necessary for tests related to the Odoo connector framework. Historically this is the context in which the above mentionned issue arose. Anybox had been using the ordinary nosetests for several years before actually stumbling on this.
Invocation
This runner relies on the assumption that all relevant Odoo addons have already been imported when the nose importer kicks in. This condition is always true if used through the buildout recipe
Therefore, the standard way of using the runner is to declare it in the buildout configuration:
eggs = anybox.nose.odoo openerp_scripts = odoo_nosetests=odoo_nosetests command-line-options=-d
and then run, e.g:
bin/odoo_nosetests -d TESTING_DB -- some/module/tests
Credits
Copyright (c) 2015 Anybox SAS <http://anybox.fr> Released under GPLv3+ license
- Author:
Jean-Sébastien SUZANNE <jssuzanne@anybox.fr>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file anybox.nose.odoo-0.1.tar.gz
.
File metadata
- Download URL: anybox.nose.odoo-0.1.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15aa9d89a3e888fc010d287fb734a023a7c5a44d7a1d3d898211bad5c46a6791 |
|
MD5 | 63ec9c6c30ed792214881a1aa9ab9e71 |
|
BLAKE2b-256 | eb856fe03074e28b67fe3566debcc5515c273509015e2766fc2e5579cf288ebc |