#!/bin/sh -ex

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

cd webserver

# Install the different requirements
make pip_dev
# Run the unit tests
make test_unit
# Run the stylechecks
make lint
