Hi Brian, On Wed, Oct 17, 2012 at 11:53:34PM -0700, Brian Stephanik wrote: > > I'm a relatively new to Python and would like to contribute some unit tests > to sympy. I can't find any sympy documentation on creating new tests. Any > suggestions?
What exactly would like to know about creating unit tests for SymPy? Generally, reading the existing unit tests and following the same pattern works. Your code eventually gets reviewed nevertheless, so if something is wrong, people will point it out. However, usually it's not writing unit tests that is recommended as an entry point for newcomers. What is usually suggested is fixing some issues [0], especially those marked with the label EasyToFix [1]. In any case, the standard SymPy Developement Workflow page [2] should be useful, if you haven't already read it. Don't hesitate to ask any questions; we're here to help. Sergiu [0] http://code.google.com/p/sympy/issues/list [1] http://code.google.com/p/sympy/issues/list?can=2&q=label%3AEasyToFix+&colspec=ID+Type+Status+Priority+Milestone+Reporter+Summary+Stars&cells=tiles [2] https://github.com/sympy/sympy/wiki/Development-workflow -- 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.
