author | Adrien Di Mascio <Adrien.DiMascio@logilab.fr> |
Tue, 23 Jun 2009 15:52:52 +0200 | |
branch | stable |
changeset 2151 | d653e4c944d7 |
parent 1977 | 606923dff11b |
child 2172 | cf8f9180e63e |
permissions | -rw-r--r-- |
0 | 1 |
"""this pytestconf automatically adds the mx's python version in the PYTHONPATH |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
2 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 3 |
""" |
4 |
import sys |
|
5 |
import os.path as osp |
|
6 |
||
7 |
import cubicweb |
|
8 |
# remove 'mx' modules imported by cubicweb |
|
9 |
for modname in sys.modules.keys(): |
|
10 |
if modname.startswith('mx'): |
|
11 |
sys.modules.pop(modname) |
|
12 |
||
13 |
# this is where mx should get imported from |
|
14 |
mxpath = osp.abspath(osp.join(osp.dirname(cubicweb.__file__), 'embedded')) |
|
15 |
sys.path.insert(1, mxpath) |
|
16 |
||
17 |
# make sure the correct mx is imported |
|
18 |
import mx |
|
19 |
assert osp.dirname(mx.__file__) == osp.join(mxpath, 'mx'), '%s != %s' % (osp.dirname(mx.__file__), mxpath) |