When using the current circleci/python:3.8-rc-stretch-browsers my PATH is not correctly loaded, and as such after I pip install, python libs are not available in my PATH. When I SSH they are (which was the behavior before).
This works in 3.6, 3.7 images:
- run: pip install -r requirements.txt --user --no-warn-script-location
- run:
name: "Integration tests"
command: pytest --junitxml=integration-test-reports/results.xml
In current image I have to reference the executable direcly:
- run: pip install -r requirements.txt --user --no-warn-script-location
- run:
name: "Integration tests"
command: ~/.local/bin/pytest --junitxml=integration-test-reports/results.xml