Skip to content

Commit

Permalink
ci: fixed coverage reporting (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Oct 31, 2023
1 parent 8fa9062 commit 7f2b9c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ build:

test:
@# if SLOW is not set, pass `-m "not slow"` to skip slow tests
poetry run pytest ${SRCDIRS} -v --cov=gptme --cov-report=term-missing --cov-report=html $(if $(SLOW),, -m "not slow") $(if $(PROFILE),--profile-svg)
poetry run pytest ${SRCDIRS} -v \
--cov=gptme --cov-report=xml --cov-report=term-missing --cov-report=html \
$(if $(SLOW),, -m "not slow") $(if $(PROFILE),--profile-svg)

typecheck:
poetry run mypy --ignore-missing-imports ${SRCDIRS} --exclude ${EXCLUDES}
Expand Down

0 comments on commit 7f2b9c0

Please sign in to comment.