#!/bin/sh -ex

# This script is used in Jenkins to check PRs and gate deployments

# Install requirements
make pip_dev

# Run unit tests with coverage reports
make test_unit_cov

# Run stylechecks
make lint
