Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cracked-machine authored Feb 11, 2024
1 parent 57c2f3a commit e28eba6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
.PHONY: init test

0 comments on commit e28eba6

Please sign in to comment.