# ----------------------------------------------------------------------------
# Copyright (c) 2013--, scikit-bio development team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
# ----------------------------------------------------------------------------

ifeq ($(WITH_COVERAGE), TRUE)
	TEST_COMMAND = coverage run -m skbio.test
else
	TEST_COMMAND = python -m skbio.test
endif

test:
	$(TEST_COMMAND)
	pep8 skbio setup.py checklist.py
	flake8 skbio setup.py checklist.py
	./checklist.py
