diff options
Diffstat (limited to 'sources/shiboken2/tests/samplebinding/overflow_test.py')
-rw-r--r-- | sources/shiboken2/tests/samplebinding/overflow_test.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sources/shiboken2/tests/samplebinding/overflow_test.py b/sources/shiboken2/tests/samplebinding/overflow_test.py index b7a1006fe..56a5d98c7 100644 --- a/sources/shiboken2/tests/samplebinding/overflow_test.py +++ b/sources/shiboken2/tests/samplebinding/overflow_test.py @@ -31,9 +31,14 @@ '''Test case for overflowing C++ numeric types.''' +import os import sys import unittest +sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +from shiboken_paths import init_paths +init_paths() + from sample import * from py3kcompat import IS_PY3K, long |