mirror of
https://github.com/rjNemo/mars-rover-kata
synced 2026-06-06 02:36:48 +00:00
16 lines
339 B
YAML
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
|