#!/usr/bin/bash

black ./**/*.py && \
isort ./**/*.py && \
flake8 ./**/*.py && \
pylint ./**/*.py

coverage run -m pytest
