Calmcode - makefiles: chains

Chains

1 2 3 4 5 6

There are a few edits we've made to our Makefile.

test:
    pytest tests.py

clean:
    rm -rf __pycache__ .pytest_cache

flake:
    flake8 common.py tests.py

check: flake test clean

Note when you copy the above file; the indentation must be a tab in a Makefile. What you copy may contain spaces instead.