mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
https://quart.palletsprojects.com/en/latest/ Python ASGI web framework with the same API as Flask
27 lines
756 B
Diff
27 lines
756 B
Diff
From aa38d4c8bd20494af6f69c56210c4fd0fd9f0acd Mon Sep 17 00:00:00 2001
|
|
From: knuxify <knuxify@gmail.com>
|
|
Date: Wed, 23 Jul 2025 07:40:33 +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 b15e778..220aa7b 100644
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -54,7 +54,7 @@ build-backend = "flit_core.buildapi"
|
|
name = "quart"
|
|
|
|
[tool.pytest.ini_options]
|
|
-addopts = "--no-cov-on-fail --showlocals --strict-markers"
|
|
+addopts = "--showlocals --strict-markers"
|
|
asyncio_default_fixture_loop_scope = "session"
|
|
asyncio_mode = "auto"
|
|
testpaths = ["tests"]
|
|
--
|
|
2.50.0
|
|
|