Forked from
Air Shower Physics / corsika
2533 commits behind the upstream repository.
-
Remy Prechelt authoredRemy Prechelt authored
Makefile 389 B
##
# ##
# 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
black:
${PYTHON} -m black -t py37 corsika tests
isort:
${PYTHON} -m isort --atomic corsika tests
mypy:
${PYTHON} -m mypy corsika
# end