Hello,
I’m trying to set up a gitlab-ci.yml file to run pytest_bdd script in a selenium hub. That’s what I got :
stages:
- Test
Selenium Test:
stage: Test
image: python
script:
- pip install pytest
- pip install pytest_bdd
- pip install selenium
- docker-compose up -d
- python -m pytest tests/step_defs/test_new_account.py --html=report.html
It works on my machine but i don’t know why I have an error on the docker compose command.
Tx
Hadrien