#!/bin/sh set -e python3 -m mypy plomtask/*.py python3 -m flake8 plomtask/*.py python3 -m pylint plomtask/*.py python3 -m mypy tests/*.py python3 -m flake8 tests/*.py python3 -m pylint tests/*.py python3 -m unittest tests/*.py exit 0