diff --git a/pyproject.toml b/pyproject.toml index 9f869b036..c7d6ad9ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -100,7 +100,7 @@ omit = [ [tool.coverage.report] precision = 2 -fail_under = 98.10 +fail_under = 98.28 show_missing = true skip_covered = true exclude_lines = [ @@ -112,7 +112,7 @@ exclude_lines = [ ] [tool.coverage.coverage_conditional_plugin.omit] -"uvicorn/loops/uvloop.py" = "sys_platform == 'win32'" +"sys_platform == 'win32'" = ["uvicorn/loops/uvloop.py"] [tool.coverage.coverage_conditional_plugin.rules] py-win32 = "sys_platform == 'win32'" @@ -121,5 +121,5 @@ py-linux = "sys_platform == 'linux'" py-darwin = "sys_platform == 'darwin'" py-gte-38 = "sys_version_info >= (3, 8)" py-lt-38 = "sys_version_info < (3, 8)" -py-gte-39 = "sys_version_info < (3, 9)" +py-gte-39 = "sys_version_info >= (3, 9)" py-lt-39 = "sys_version_info < (3, 9)" diff --git a/requirements.txt b/requirements.txt index 5e8f3118d..c584fe448 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,7 +20,7 @@ types-pyyaml==6.0.12.9 trustme==0.9.0 cryptography==41.0.0 coverage==7.2.7 -coverage-conditional-plugin==0.8.0 +coverage-conditional-plugin==0.9.0 httpx==0.23.0 watchgod==0.8.2