Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/testing/webcompat/interventions/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  conftest.py   Sprache: Python

 
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.


from ..fixtures import *  # noqa: F403


def pytest_generate_tests(metafunc):
    """Generate tests based on markers."""

    if "session" not in metafunc.fixturenames:
        return

    marks = [mark.name for mark in metafunc.function.pytestmark]

    otherargs = {}
    argvalues = []
    ids = []

    if "only_platforms" in marks:
        for mark in metafunc.function.pytestmark:
            if mark.name == "only_platforms":
                otherargs["only_platforms"] = mark.args

    if "skip_platforms" in marks:
        for mark in metafunc.function.pytestmark:
            if mark.name == "skip_platforms":
                otherargs["skip_platforms"] = mark.args

    if "with_interventions" in marks:
        argvalues.append([dict({"interventions"True}, **otherargs)])
        ids.append("with_interventions")

    if "without_interventions" in marks:
        argvalues.append([dict({"interventions"False}, **otherargs)])
        ids.append("without_interventions")

    if "need_visible_scrollbars" in marks:
        for mark in metafunc.function.pytestmark:
            if mark.name == "need_visible_scrollbars":
                otherargs["need_visible_scrollbars"] = mark.args

    if "no_overlay_scrollbars" in marks:
        otherargs["no_overlay_scrollbars"] = True

    metafunc.parametrize(["session"], argvalues, ids=ids, indirect=True)


@pytest.fixture(scope="function")  # noqa: F405
async def test_config(request, driver):
    params = request.node.callspec.params.get("session")

    use_interventions = params.get("interventions")
    print(f"use_interventions {use_interventions}")
    if use_interventions is None:
        raise ValueError(
            "Missing intervention marker in %s:%s"
            % (request.fspath, request.function.__name__)
        )

    return {
        "use_interventions": use_interventions,
    }

80%


¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.