I need to run test on different env (dev, staging, prod) depending on the command sent via cli
pytest -sv --env_name=smoke --platform=android conftest.py
Can I get arguments sent via cli using Pytest in the helper class say env.py and return the configs I need? thanks
In general, I need to send env and get a host depending on the environment