mars-rover-kata/.gitlab-ci.yml
2021-08-30 11:50:36 +02:00

16 lines
339 B
YAML

test:
script:
- apt-get update -qy
- apt-get install -y python-dev python-pip
- pip install -r requirements.txt
- pytest -v tests
staging:
type: deploy
script:
- apt-get update -qy
- apt-get install -y python-dev
- pip install -r requirements.txt
- dpl --provider=heroku --app=$HEROKU_STAGING_APP
only:
- master