Skip to content

Commit

Permalink
Generating coverage.xml file
Browse files Browse the repository at this point in the history
  • Loading branch information
marcieltorres committed Mar 3, 2024
1 parent b82c6de commit 83310e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local/install: generate-default-env-file
poetry install

local/tests:
poetry run pytest -s --cov-report=html --cov-report=term --cov .
poetry run pytest -s --cov-report=html xml:coverage.xml --cov-report=term --cov .

local/lint:
poetry run ruff check .
Expand All @@ -42,7 +42,7 @@ docker/down:
docker-compose down --remove-orphans

docker/test:
docker-compose run ${APP_NAME} poetry run pytest --cov-report=html --cov-report=term --cov .
docker-compose run ${APP_NAME} poetry run pytest --cov-report=html xml:coverage.xml --cov-report=term --cov .

docker/lint:
docker-compose run ${APP_NAME} poetry run ruff check .
Expand Down

0 comments on commit 83310e0

Please sign in to comment.