From da27ce4d7caac77bc4f05957fea67e93a86ce336 Mon Sep 17 00:00:00 2001 From: ColinDuquesnoy Date: Wed, 26 Feb 2014 13:52:46 +0100 Subject: [PATCH] Execute test only on 64bit platforms --- test/test_compiled.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/test_compiled.py b/test/test_compiled.py index 0c266897..b87ee7cb 100644 --- a/test/test_compiled.py +++ b/test/test_compiled.py @@ -21,13 +21,13 @@ def test_completions(): @cwd_at('test/extensions') def test_call_signatures(): - # if platform.architecture()[0] == '64bit': - package_name = "compiled%s%s" % sys.version_info[:2] - sys.path.insert(0, os.getcwd()) - if os.path.exists(package_name): - s = jedi.Script("from %s import compiled; compiled.Foo(" % - package_name) - defs = s.call_signatures() - for call_def in defs: - for param in call_def.params: - pass \ No newline at end of file + if platform.architecture()[0] == '64bit': + package_name = "compiled%s%s" % sys.version_info[:2] + sys.path.insert(0, os.getcwd()) + if os.path.exists(package_name): + s = jedi.Script("from %s import compiled; compiled.Foo(" % + package_name) + defs = s.call_signatures() + for call_def in defs: + for param in call_def.params: + pass \ No newline at end of file