.PHONY: pip_dev run test_roman_numerals test_tictactoe test_mastermind test_happy_numbers test_factorial test_divisor test_analytics

env pip_dev:
	python3.6 -m venv env
	env/bin/pip3.6 install --upgrade pip
	env/bin/pip3.6 install -r requirements.txt

test_roman_numerals: env
	pytest roman_numerals/test

test_tictactoe: env
	pytest tictactoe/test

test_mastermind: env
	pytest mastermind/test

test_happy_numbers: env
	pytest happy_numbers/test

test_factorial: env 
	pytest factorial/test 

test_divisor: env
	pytest divisor/test

test_analytics: env
	pytest analytics/test