Skip to content

Commit

Permalink
update coverage expectation for pypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien Coelho committed Aug 3, 2024
1 parent 8520ff2 commit 0e99b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ check.coverage.local: check.coverage.misc check.coverage.postgres.local check.co
$(MAKE) check.coverage.combine

IS_DOCKER =
FAIL_UNDER = $(shell python -c 'import sys; print(100.0 if sys.version_info < (3, 13) else 84.6)')
FAIL_UNDER = $(shell python -c 'import sys; import platform; print(100.0 if sys.version_info < (3, 13) and platform.python_implementation() == "CPython" else 84.6)')

.PHONY: check.coverage.combine
check.coverage.combine: $(VENV)
Expand Down

0 comments on commit 0e99b0e

Please sign in to comment.