Before I start executing the tests in my Python project, I read some environment variables and set some variables with these values read. My tests will run on the desired en
Run export inside a subshell (enclosing parenthesis) not to mess up local environment. Supply export with parameters from .env file.
export
.env
(export $(xargs < .env); pytest -svvvx api)