feat: introduce smoke test group and fail-fast test orchestration (#572)

This commit is contained in:
Jens Bergmann
2025-07-09 19:23:52 +02:00
committed by GitHub
parent ed2f63f0dd
commit 1a1633e12d
8 changed files with 607 additions and 46 deletions

8
tests/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
# SPDX-FileCopyrightText: © Jens Bergmann and contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
# SPDX-ArtifactOfProjectHomePage: https://github.com/Second-Hand-Friends/kleinanzeigen-bot/
# This file makes the tests/ directory a Python package.
# It is required so that direct imports like 'from tests.conftest import ...' work correctly,
# and to avoid mypy errors about duplicate module names when using such imports.
# Pytest does not require this for fixture discovery, but Python and mypy do for package-style imports.