# Add any tasks that are not dependent on files in the .PHONY list
.PHONY: test test_cov lint pip_dev

test:
	py.test tests/

test_cov:
	py.test tests/ --cov secrets_manager --cov-report term-missing

lint:
	flake8 secrets_manager/ tests/

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