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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cython
Commits
c60f7e25
Commit
c60f7e25
authored
Jan 06, 2022
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide debug output in the pyximport tests.
parent
ec54ccca
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
0 deletions
+12
-0
tests/pyximport/pyximport_basic.srctree
tests/pyximport/pyximport_basic.srctree
+2
-0
tests/pyximport/pyximport_errors.srctree
tests/pyximport/pyximport_errors.srctree
+2
-0
tests/pyximport/pyximport_namespace.srctree
tests/pyximport/pyximport_namespace.srctree
+2
-0
tests/pyximport/pyximport_pyimport.srctree
tests/pyximport/pyximport_pyimport.srctree
+2
-0
tests/pyximport/pyximport_pyimport_only.srctree
tests/pyximport/pyximport_pyimport_only.srctree
+2
-0
tests/pyximport/pyximport_pyxbld.srctree
tests/pyximport/pyximport_pyxbld.srctree
+2
-0
No files found.
tests/pyximport/pyximport_basic.srctree
View file @
c60f7e25
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
import os.path
import os.path
import pyximport
import pyximport
pyximport.DEBUG_IMPORT = True
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
def test():
def test():
...
...
tests/pyximport/pyximport_errors.srctree
View file @
c60f7e25
...
@@ -7,6 +7,8 @@ import os.path
...
@@ -7,6 +7,8 @@ import os.path
from contextlib import contextmanager
from contextlib import contextmanager
import pyximport
import pyximport
pyximport.DEBUG_IMPORT = True
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
@contextmanager
@contextmanager
...
...
tests/pyximport/pyximport_namespace.srctree
View file @
c60f7e25
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
import os.path
import os.path
import pyximport
import pyximport
pyximport.DEBUG_IMPORT = True
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
def test():
def test():
...
...
tests/pyximport/pyximport_pyimport.srctree
View file @
c60f7e25
...
@@ -9,6 +9,8 @@ import pyximport
...
@@ -9,6 +9,8 @@ import pyximport
# blacklist for speed
# blacklist for speed
import pyximport.pyxbuild, Cython.Compiler.Pipeline
import pyximport.pyxbuild, Cython.Compiler.Pipeline
pyximport.DEBUG_IMPORT = True
pyximport.install(pyximport=False, pyimport=True,
pyximport.install(pyximport=False, pyimport=True,
build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
...
...
tests/pyximport/pyximport_pyimport_only.srctree
View file @
c60f7e25
...
@@ -6,6 +6,8 @@ PYTHON -c "import pyimport_test; pyimport_test.test()"
...
@@ -6,6 +6,8 @@ PYTHON -c "import pyimport_test; pyimport_test.test()"
import os.path
import os.path
import pyximport
import pyximport
pyximport.DEBUG_IMPORT = True
pyximport.install(pyximport=False, pyimport=True,
pyximport.install(pyximport=False, pyimport=True,
build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
...
...
tests/pyximport/pyximport_pyxbld.srctree
View file @
c60f7e25
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
...
@@ -6,6 +6,8 @@ PYTHON -c "import basic_test; basic_test.test()"
import os.path
import os.path
import pyximport
import pyximport
pyximport.DEBUG_IMPORT = True
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))
def test():
def test():
...
...
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