Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium Python3

New issue 2982 by sean.v....@gmail.com: galgebra tests failing in python3
http://code.google.com/p/sympy/issues/detail?id=2982

When I run python3 tests, I get test failures for all the tests in test_GA.py, see [1]. Looking further into it, it looks like use2to3 turns:
if type(basis) == types.StringType:
on line 822 of GA.py, which should be True, into:
if type(basis) == bytes:
which is False. Thus, MV.define_basis isn't called, so MV.n1rg isn't initialized, leading to the errors I get from the tests.

I realized, however, that other people have been able to get passing python3 tests, so I went and looked at their test reports and noticed that when other people run sympy-bot with python3, test_GA isn't run. See tests from asmeuer [2] and goodok [3].

[1] http://reviews.sympy.org/report/agZzeW1weTNyDAsSBFRhc2sY65AKDA
[2] http://reviews.sympy.org/report/agZzeW1weTNyDAsSBFRhc2sY6ZAKDA
[3] http://reviews.sympy.org/report/agZzeW1weTNyDAsSBFRhc2sYtvkJDA

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To post to this group, send email to sympy-issues@googlegroups.com.
To unsubscribe from this group, send email to 
sympy-issues+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sympy-issues?hl=en.

Reply via email to