Re: [sympy] Running SymPy's tests with pytest

2019-01-21 Thread Oscar Benjamin
On Mon, 21 Jan 2019 at 23:58, Aaron Meurer wrote: > > > SymPy's test runner just skips xfail tests. > > This should not be the case, except for slow xfail tests. Sorry I've just checked and you're right. bin/test does run the xfail tests and does report them as xpass with an X if they pass

Re: [sympy] Running SymPy's tests with pytest

2019-01-21 Thread Aaron Meurer
> SymPy's test runner just skips xfail tests. This should not be the case, except for slow xfail tests. Aaron Meurer -- 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

[sympy] Running SymPy's tests with pytest

2019-01-21 Thread Oscar Benjamin
Hi all, For the past two months I've been working on making it possible to run SymPy's test suite using pytest. It is now possible to do this so I thought I'd write something here to explain how to use it and why it can be useful. There are two options in particular that I find very useful while