.PHONY: tests
tests:
	python -m pytest tests

.PHONY: coverage-report
coverage-report:
	python -m pytest --cov-report term-missing:skip-covered --cov=oasis tests/

.PHONY: coverage
coverage:
	python -m pytest --cov=oasis tests/

debug:
	python main.py --debug

run:
	python main.py
