Newer
Older
##
# ##
# corsika
#
# @file
# find python3
PYTHON=`which python3`
# our testing targets
.PHONY: tests flake black isort all
all: mypy isort black flake tests
tests:
${PYTHON} -m pytest --cov=corsika tests
flake:
${PYTHON} -m flake8 corsika tests