protocol-builder-mock/.travis.yml
Dan 3364619267 Removing deploy step from Travis, as we are moving to Quay.io
for this process.
Dropping the deloy.sh as it is no longer in use.
Updating the docker file to remove denendency on cr-connect-python-base
2021-02-11 16:07:28 -05:00

39 lines
588 B
YAML

language: python
python:
- "3.7"
services:
- postgresql
- docker
addons:
chrome: stable
sonarcloud:
organization: "sartography"
before_install:
- psql -c 'create database pb_test;' -U postgres
install:
- pipenv install --dev
env:
global:
- TESTING=true
- SQLALCHEMY_DATABASE_URI="postgresql://postgres:@localhost:5432/pb_test"
script:
- pipenv run coverage run -m pytest
- pipenv run coverage xml -i
after_success:
- sonar-scanner
notifications:
email:
on_success: change
on_failure: always
recipients:
- dan@sartography.com