Hello guys,
first i would like to thank you for this awesome tool !
I'm running Odoo from docker container and what i did is the following :
- I got inside the container using this command
docker exec -ti <my_odoo_container> bash
- Then i installed pytest-odoo inside the container
pip3 install pytest-odoo
- I used this command to run the test
pytest -s addons/<my_module>/tests/test_account_move.py --odoo-database=staging_3
But it gives me this error OSError: [Errno 98] Address already in use :

Did anyone encounter a similar issue ?
Thanks.