mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
https://github.com/pgjones/hypercorn ASGI Server based on Hyper libraries and inspired by Gunicorn
27 lines
771 B
Diff
27 lines
771 B
Diff
From 15bdcfadc9088fe2404d813f5c1258445f4ce0ac Mon Sep 17 00:00:00 2001
|
|
From: knuxify <knuxify@gmail.com>
|
|
Date: Wed, 23 Jul 2025 07:39:07 +0200
|
|
Subject: [PATCH] drop --no-cov-on-fail from pytest options
|
|
|
|
Allows us to avoid a checkdepend on py3-pytest-cov.
|
|
---
|
|
pyproject.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyproject.toml b/pyproject.toml
|
|
index 15695b6..b0f7824 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -96,7 +96,7 @@ module =["aioquic.*", "cryptography.*", "h11.*", "h2.*", "priority.*", "pytest_a
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pytest.ini_options]
|
|
-addopts = "--no-cov-on-fail --showlocals --strict-markers"
|
|
+addopts = "--showlocals --strict-markers"
|
|
asyncio_mode = "strict"
|
|
testpaths = ["tests"]
|
|
|
|
--
|
|
2.50.0
|
|
|