protocol-builder-mock/.travis.yml
2020-02-17 16:47:34 -05:00

25 lines
383 B
YAML

language: python
services:
- docker
python:
- "3.7"
install:
- pip install pipenv pytest
- pipenv install
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
# command to run tests
script:
- pytest
before_deploy:
- docker build -t sartography/protocol-builder-mock .
deploy:
provider: script
script: bash docker_push.sh
on:
branch: master