Ошибка "CommandNotFoundException" при запуске python-скрипта в рамках pipeline GitLab
Есть вот такой пайплайн:
image: python:3.7.9
stages:
- test
run_ui_tests:
tags:
- es-test
- est
stage: test
before_script:
- python --version
- pip install -r requirements.txt
script:
- echo "Executing ui tests..."
- cd cio_tests
after_script:
- echo "Cleaning test catalogue..."
В чем причина? Заранее спасибо
