#! /usr/bin/make

check: flake8 pytest

flake8:
	flake8 --ignore=E501,W503 helpme.py

pytest:
	pytest helpme.py
