I also got this problem. The slow tests are tests that might take a really long time to complete. Sometimes, they might also eat up a lot of memory, as you saw. Probably that particular test should just be removed, or completely skipped.
If you do run --slow, though, I would recommend always also using --timeout (--timeout 1000 or --timeout 10000 should be fine). Otherwise, you run the risk of a test hanging forever, and potentially eating all your memory. Aaron Meurer On Thu, Oct 18, 2012 at 6:56 PM, Brian Stephanik <[email protected]> wrote: > I should mention, I'm running Python 2.7.3 on 64-bit OS X 10.8 (Mountain > Lion). > > -- > You received this message because you are subscribed to the Google Groups > "sympy" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/sympy/-/cvFMDOwy-tEJ. > > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/sympy?hl=en. -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy?hl=en.
