Repro
- Prepare test file with code:
from abc import ABCMeta, abstractmethod
class AbstractTestFoo(metaclass=ABCMeta):
@abstractmethod
def test_foo(self):
...
class TestFoo(AbstractTestFoo):
...
- Run test file
Actual
pytest collects test successfully, but no test is found.
Expected
pytest errors at test collection stage.
Repro
Actual
pytest collects test successfully, but no test is found.
Expected
pytest errors at test collection stage.
pip listfrom the virtual environment you are using