I think that should work. Usually when a test fails, I open the file and take a look at it, and run the code manually if I need to, but the test runner doesn't do anything more than just import the modules and run all the functions that start with "test_".
Aaron Meurer On Mon, Sep 28, 2015 at 3:31 PM, Kate MacInnis <[email protected]> wrote: > I just want to make sure I understand how testing is supposed to work, > before I start going through the code looking for the source of (what I > think is) weirdness. > > If I run `sympy.test('test_frame')` and get: > > sympy/physics/vector/tests/test_frame.py[4] .EE. > [FAIL] > > _____________________________________________________________________________________ > _______________ sympy/physics/vector/tests/test_frame.py:test_ang_vel > _______________ > File > "/users/kate/devstuff/sympy/sympy/physics/vector/tests/test_frame.py", line > 65, in test_ang_vel > ... > > > then I should be able to do >>>> from sympy.physics.vector.tests.test_frame import test_ang_vel >>>> test_ang_vel() > > and get the same error, right? Or is that not what is supposed to happen? > > -- > You received this message because you are subscribed to the Google Groups > "sympy" 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. > To view this discussion on the web visit > https://groups.google.com/d/msgid/sympy/70260765-bde6-424f-9cb1-1b813f6ef671%40googlegroups.com. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sympy" 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. To view this discussion on the web visit https://groups.google.com/d/msgid/sympy/CAKgW%3D6KumJ4p63gGcUdwVsJQgr6Z8CD_g%2BnYAz%2BzipKepASdYw%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
