Open innateessence opened 3 years ago
Same issue for me. I tried with
foo/foo.py
def foo():
return True
and
tests/test_foo.py
from foo import foo
def test_foo():
assert foo() is True
and command
pytest --func_cov=foo --func_cov_report=term-missing tests
and could reproduce the issue:
=> Coverage for function 'foo' should be 100 %
=> Did anyone successfully use pytest_func_cov?
I'm trying to test a flask app, and I'm not getting any coverage reporting information when using this plugin