#!/bin/bash
set -e
# cd to self bash script directory
cd $( dirname ${BASH_SOURCE[0]})
. ./activate.sh
echo Running isort src tests
isort src tests
echo Running black src tests
black src tests
echo Running flake8 src tests
flake8 src tests
echo Running pylint src
pylint src tests
echo Running mypy src
mypy src tests
echo Linting complete!