diff --git a/Makefile b/Makefile index 65f7053..76d483e 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,10 @@ init: + apt update && apt install --auto-remove -y lcov python3-venv python3-pip python3-dev python3-setuptools + python3 -m venv venv + source venv/bin/activate pip install -r requirements.txt - apt update && apt install --auto-remove -y lcov - test: pytest --cov-report term-missing --cov-report lcov:./tests/lcov/cov.info --cov=mm tests genhtml ./tests/lcov/cov.info -o ./tests/lcov/html -.PHONY: init test \ No newline at end of file +.PHONY: init test