From e28eba68d9aa920b0e1df38683ffc6de0cbb4ad3 Mon Sep 17 00:00:00 2001 From: cracked-machine Date: Sun, 11 Feb 2024 14:44:59 +0000 Subject: [PATCH] Update Makefile --- Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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