New issue 681: covariant parametrisation
https://bitbucket.org/hpk42/pytest/issue/681/covariant-parametrisation
Ronny Pfannschmidt:
i just found a use-case where i'd want to parametrize a test
that takes a parametrized fixture and have a different parameter parametrized
accordingly
___
New issue 682: Check if several functions are called
https://bitbucket.org/hpk42/pytest/issue/682/check-if-several-functions-are-called
Unknown Name:
I wanted to check if several functions were called during the test and I
implemented the class bellow. I don't know if you're interested in it.
U
New issue 683: Bug with parameterized classes when running tests twice
https://bitbucket.org/hpk42/pytest/issue/683/bug-with-parameterized-classes-when
astrofrog:
If we consider the following example and place it in a file called
``test_double.py``:
```
import pytest
class TestA(object):
p