You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am unable to get .coverage file in local system when using docker compose up. But .coverage file is getting emitted in case of docker compose run command but not in up
I am mounting my current working directory in docker container, and also changing the current working directory in container to the current dir in local.
First run docker compose up and stop the app, you won't find any .coverage file.
After that, run docker compose run flask-app, the difference can be seen.
The text was updated successfully, but these errors were encountered:
I am unable to get .coverage file in local system when using
docker compose up
. But .coverage file is getting emitted in case ofdocker compose run
command but not inup
I am mounting my current working directory in docker container, and also changing the current working directory in container to the current dir in local.
the below is my docker-compose file:
https://github.com/AkashKumar7902/flask-app
the above is a minimalist reproducible app.
First run
docker compose up
and stop the app, you won't find any .coverage file.After that, run
docker compose run flask-app
, the difference can be seen.The text was updated successfully, but these errors were encountered: