pytest-dev / pytest-flask

A set of pytest fixtures to test Flask applications
http://pytest-flask.readthedocs.org/en/latest/
MIT License
483 stars 89 forks source link

Coverage not being properly reported on live_server #158

Closed flixman closed 1 year ago

flixman commented 1 year ago

Describe the bug I have unit tests (without live server) and integration tests (with live_server), and all successfully pass. However, when I try to get the coverage, it does no make any difference if I have the integration tests enabled or not. I have set up in my .coveragerc

[run]
branch = True
concurrency = multiprocessing
parallel = True

to get the coverage, I am executing pytest --cov backend --cov-config=.coveragerc --cov-append but still makes no difference. After starting the live_server I check that is listening, so it is used for real. What am I doing wrong?

Environment (please complete the following information):

athoag-sony commented 4 months ago

@flixman did you figure it out? I am suffering from this issue right now.

athoag-sony commented 4 months ago

Is it possible to reopen this issue? There is no solution posted here, and I am still having issues with the latest version of pytest-flask.