On Fri, 20 Jan 2023 at 17:00, Mohit Kumar <
mohitkum...@gmail.com> wrote:
>
> I want to contribute to sympy so, I ran tests using `$./setup.py test` . Now I want to know if there would have been any error , I mean what it would show?
It is better to run tests by running the bin/test script or using
pytest. The full test suite takes a long time so I would usually only
run a subset of the tests e.g.:
$ pytest sympy/polys
There is not usually a reason to run the tests though unless you have
made some changes to the sympy code first. If you haven't changed
anything then the expectation is that the tests should all pass.
--
Oscar