# Add any tasks that are not dependent on files to the .PHONY list.
.PHONY: dev pip_dev lint test test_unit test_integration

dev:
	python dev.py

pip_dev:
	pip install --upgrade pip
	pip install -r requirements.txt
	pip install -r requirements-dev.txt

test:
	py.test tests/

test_unit:
	py.test \
		--cov content_review tests \
		--cov-report xml \
		--junitxml=pyunit.xml

lint:
	flake8 content_review/ tests/

test_integration:
	echo 'noop'
