Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Testing

New issue 3817 by [email protected]: test subprocesses miss interpreter args
http://code.google.com/p/sympy/issues/detail?id=3817

When the tests are run, a subprocess is created using sys.executable, however this misses command line arguments to the interpreter.

For example, when running the tests in PyPy, one might act as follows

$ pypy --jit off
import sympy
sympy.test()   # launches subprocesses to run tests

This won't work because sys.executable is simply the path to PyPy (e.g. '/usr/bin/pypy'), and hence subprocess.call([sys.executable, ...]) looses the fact that PyPy's JIT should be disabled for these tests.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to