Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
af5bb894
Commit
af5bb894
authored
Oct 01, 2017
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid starting IPython in test module if we don't execute the tests.
parent
557a2a2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
7 deletions
+19
-7
Cython/Build/Tests/TestIpythonMagic.py
Cython/Build/Tests/TestIpythonMagic.py
+19
-7
No files found.
Cython/Build/Tests/TestIpythonMagic.py
View file @
af5bb894
...
...
@@ -12,7 +12,7 @@ from Cython.Build import IpythonMagic
from
Cython.TestUtils
import
CythonTest
try
:
from
IPython.testing.globalipapp
import
get_ipython
import
IPython.testing.globalipapp
from
IPython.utils
import
py3compat
except
ImportError
:
# Disable tests and fake helpers for initialisation below.
...
...
@@ -21,19 +21,15 @@ except ImportError:
return
s
__test__
=
{}
get_ipython
=
lambda
:
None
py3compat
=
_py3compat
()
try
:
# disable IPython history thread to avoid having to clean it up
# disable IPython history thread
before it gets started
to avoid having to clean it up
from
IPython.core.history
import
HistoryManager
HistoryManager
.
enabled
=
False
except
ImportError
:
pass
# Initialise IPython after disabling history thread.
ip
=
get_ipython
()
code
=
py3compat
.
str_to_unicode
(
"""
\
def f(x):
return 2*x
...
...
@@ -75,17 +71,24 @@ else:
class
TestIPythonMagic
(
CythonTest
):
@
classmethod
def
setUpClass
(
cls
):
CythonTest
.
setUpClass
()
cls
.
_ip
=
IPython
.
testing
.
globalipapp
.
get_ipython
()
def
setUp
(
self
):
CythonTest
.
setUp
(
self
)
ip
.
extension_manager
.
load_extension
(
'cython'
)
self
.
_
ip
.
extension_manager
.
load_extension
(
'cython'
)
def
test_cython_inline
(
self
):
ip
=
self
.
_ip
ip
.
ex
(
'a=10; b=20'
)
result
=
ip
.
run_cell_magic
(
'cython_inline'
,
''
,
'return a+b'
)
self
.
assertEqual
(
result
,
30
)
@
skip_win32
(
'Skip on Windows'
)
def
test_cython_pyximport
(
self
):
ip
=
self
.
_ip
module_name
=
'_test_cython_pyximport'
ip
.
run_cell_magic
(
'cython_pyximport'
,
module_name
,
code
)
ip
.
ex
(
'g = f(10)'
)
...
...
@@ -99,12 +102,14 @@ class TestIPythonMagic(CythonTest):
pass
def
test_cython
(
self
):
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
''
,
code
)
ip
.
ex
(
'g = f(10)'
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
20.0
)
def
test_cython_name
(
self
):
# The Cython module named 'mymodule' defines the function f.
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
'--name=mymodule'
,
code
)
# This module can now be imported in the interactive namespace.
ip
.
ex
(
'import mymodule; g = mymodule.f(10)'
)
...
...
@@ -112,6 +117,7 @@ class TestIPythonMagic(CythonTest):
def
test_cython_language_level
(
self
):
# The Cython cell defines the functions f() and call().
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
''
,
cython3_code
)
ip
.
ex
(
'g = f(10); h = call(10)'
)
if
sys
.
version_info
[
0
]
<
3
:
...
...
@@ -123,6 +129,7 @@ class TestIPythonMagic(CythonTest):
def
test_cython3
(
self
):
# The Cython cell defines the functions f() and call().
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
'-3'
,
cython3_code
)
ip
.
ex
(
'g = f(10); h = call(10)'
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
2.0
/
10.0
)
...
...
@@ -130,6 +137,7 @@ class TestIPythonMagic(CythonTest):
def
test_cython2
(
self
):
# The Cython cell defines the functions f() and call().
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
'-2'
,
cython3_code
)
ip
.
ex
(
'g = f(10); h = call(10)'
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
2
//
10
)
...
...
@@ -138,6 +146,7 @@ class TestIPythonMagic(CythonTest):
@
skip_win32
(
'Skip on Windows'
)
def
test_cython3_pgo
(
self
):
# The Cython cell defines the functions f() and call().
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
'-3 --pgo'
,
pgo_cython3_code
)
ip
.
ex
(
'g = f(10); h = call(10); main()'
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
2.0
/
10.0
)
...
...
@@ -145,6 +154,7 @@ class TestIPythonMagic(CythonTest):
@
skip_win32
(
'Skip on Windows'
)
def
test_extlibs
(
self
):
ip
=
self
.
_ip
code
=
py3compat
.
str_to_unicode
(
"""
from libc.math cimport sin
x = sin(0.0)
...
...
@@ -155,6 +165,7 @@ x = sin(0.0)
def
test_cython_verbose
(
self
):
ip
=
self
.
_ip
ip
.
run_cell_magic
(
'cython'
,
'--verbose'
,
code
)
ip
.
ex
(
'g = f(10)'
)
self
.
assertEqual
(
ip
.
user_ns
[
'g'
],
20.0
)
...
...
@@ -180,6 +191,7 @@ x = sin(0.0)
finally
:
IpythonMagic
.
distutils
.
log
=
old_log
ip
=
self
.
_ip
with
mock_distutils
()
as
verbose_log
:
ip
.
run_cell_magic
(
'cython'
,
'--verbose'
,
code
)
ip
.
ex
(
'g = f(10)'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment